-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.29 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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
darkMode: false,
theme: {
extend: {
fontFamily: {
sans: ["Roboto", "sans-serif"],
},
colors: {
brand: {
100: "#FFFFFF",
200: "#F8FBFB",
300: "#D8E9E9",
400: "#B7D7D7",
500: "#96C5C5",
600: "#75B3B3",
700: "#579E9E",
800: "#457D7D",
900: "#335C5C",
DEFAULT: "#96C5C5",
},
accent: {
100: "#A3C4DB",
200: "#7EACCD",
300: "#5A95BF",
400: "#407BA5",
500: "#326081",
600: "#24445C",
700: "#152937",
800: "#070E12",
900: "#000000",
DEFAULT: "#326081",
},
},
},
},
variants: {
opacity: ["disabled"],
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/forms"),
],
purge: {
enabled: process.env.NODE_ENV === "production",
content: [
"components/**/*.js",
"layouts/**/*.js",
"pages/**/*.js",
"next.config.js",
],
},
};