forked from rmt-22-verona-fox/p2-iproject-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (68 loc) · 1.5 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Roboto", ...defaultTheme.fontFamily.sans],
label: ["Montserrat"],
},
fontSize: {
"heading-1": "48px",
"heading-2": "36px",
"heading-3": "24px",
"heading-4": "18px",
"heading-5": "14px",
"heading-6": "12px",
},
colors: {
primary: {
blue: "#1053B7",
white: "#FFFFFF",
black: "#050D18",
},
secondary: {
yellow: "#EBA41F",
red: "#EB1F2B",
},
color: {
primary: "#050D18",
secondary: "#50555D",
},
white: "#FFFFFF",
black: "#000000",
facebook: "#4267B2",
yellow: {
10: "#FDF5E8",
30: "#F9E3BB",
50: "#F5D18F",
70: "#F1BF62",
100: "#EBA41F",
},
red: {
10: "#FDE8E9",
30: "#F9BBBF",
50: "#F58F95",
70: "#F1626A",
100: "#EB1F2B",
},
blue: {
10: "#E7EDF7",
30: "#B7CBE9",
50: "#87A9DB",
70: "#5786CC",
100: "#1053B7",
},
gray: {
10: "#E6E6E7",
30: "#B4B6B9",
50: "#82868B",
70: "#50555D",
100: "#050D18",
},
},
},
},
plugins: [],
};