-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (51 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Open Sans"],
pap: ["papyrus"],
cur: ["cursive"],
ger: ["georgia"],
serif: [" SF Pro Display"],
passion: ["Passion One"],
dm: ["DM Sans;"],
},
listStyleType: {
"decimal-zero": ["decimal-leading-zero"],
"decimal-number": ["1,"],
},
colors: {
red: "#DC0404",
black: "#303030",
gold: "#F5AD32",
white: "#FFF",
dark: "#000000",
grey: "#EFEDED",
"light-brown": "#FFFBF5",
"dark-grey": "#262626",
"light-blue": "#9cdeff",
hrLine: "#1212124D",
primaryBlue: "#2069f7",
secondary: {
100: "#303030",
},
},
backgroundColor: {
darkBg: "#1D1D1D",
primary_yellow: "#F5AD32",
secondary_yellow: "#FEF5E7",
lightGrey: "#F4F4F4",
tertiary_gray: "#525252",
secondary_gray: "#FFF",
sky_blue: "#C4E2ED",
primary_pink: "#EBD7E5",
dance_blue: "#F6F6F2",
secondary_black: "#1A191D",
secondary_blue: "#6E07F3",
},
},
},
plugins: [],
};