-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (63 loc) · 1.37 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
const theme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['"Open Sans"', ...theme.fontFamily.sans],
montserrat: ['"Montserrat"', ...theme.fontFamily.sans],
},
colors: {
"primary-light": "#f8f8f8",
"primary-dark": "#191919",
pinkish: {
100: '#fdba74',
200: '#a7f3d0',
300: '#6ee7b7',
},
blueish: {
100: "#e6f8f9",
200: "#b1e8ed",
},
greenish:{
100: "#d9f99d",
}
},
typography: (theme) => ({
DEFAULT: {
css: {
color: "#333",
a: {
color: "#b5f24b",
"&:hover": {
color: "#bef264",
},
},
},
},
dark: {
css: {
color: theme("colors.gray.100"),
a: {
color: theme("colors.purple.400"),
"&:hover": {
color: theme("colors.purple.300"),
},
},
},
},
}),
},
},
variants: {
extend: {
typography: ["dark"],
},
},
plugins: [require("@tailwindcss/typography")],
};