-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
52 lines (52 loc) · 1.05 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
module.exports = {
purge: ["./pages/**/*.js", "./components/**/*.js"],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
blue: {
lightest: "#D0E2FF",
light: "#609EFF",
default: "#1570FF",
dark: "#0F52BB",
},
green: {
lightest: "#CCF4DD",
light: "#7AE2A6",
default: "#00C853",
dark: "#007832",
},
orange: {
lightest: "#FFECCF",
light: "#FFCD81",
default: "#FF9E0D",
dark: "#CC7E0A",
},
pink: {
lightest: "#FFE8F3",
light: "#F4B8CA",
default: "#DF3A6B",
dark: "#B22E56",
},
blueGray: {
lightest: "#DAE1E8",
light: "#9FB2C3",
default: "#476A8B",
dark: "#344E66",
},
},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
},
},
variants: {
extend: {},
},
plugins: [],
};