forked from aerx-dev/aerx-mvp-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 1.21 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
jost: ["Jost", "sans-serif"],
"work-sans": ["Work Sans", "sans-serif"],
cursive: ["Cursive", "sans-serif"],
},
colors: {
brand: {
DEFAULT: "#9510AC",
dark: "#0F0111",
gray: "#202020",
text: "#747474",
social: "#2D76F9",
},
team: {
header: "#252B42",
content: "#737373",
},
profile: {
blue: {
50: "#B0B6D0",
100: "#90C8EB",
200: "#6697E2",
300: "#223758",
400: "#1D232D",
},
gray: {
200: "#282828",
300: "#E5E5E5",
},
},
},
},
},
plugins: [],
};