-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (62 loc) · 1.27 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: false,
content: [
"./src/pages/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
],
theme: {
screens: {
xs: '500px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
extend: {
colors: {
"walden-green": "#183028",
primary: {
lighter: "#4b3f72",
DEFAULT: "#1f2041",
darker: "#4b4c75",
},
secondary: {
lighter: "#3c91e6",
DEFAULT: "#2867a6",
darker: "#174e85",
},
"non-photo-blue": "#A631FA",
"ghost-white": "#F3F7FF",
"raisin-black": "#272932",
"french-blue": "#0075C4",
"weblink-blue": {
DEFAULT: "#2f6ca8",
darker: "#0f4a85",
},
"weblink-visited": {
DEFAULT: "#800080",
},
thimble: {
lighter: "#ed7e7e",
DEFAULT: "#E43A3A",
darker: "#cf2525",
},
},
},
fontFamily: {
sans: [
"Jakarta Sans",
"ui-sans-serif",
"sans-serif",
],
serif: [
"Merriweather",
"ui-serif",
"serif",
],
},
},
variants: {},
plugins: [],
};