-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
75 lines (75 loc) · 1.81 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
68
69
70
71
72
73
74
75
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
boxShadow: {
glow: "0 0 5px #D9ED92",
"3xl": "0 35px 60px -15px rgba(0, 0, 0, 0.3)",
},
colors: {
transparent: "transparent",
current: "currentColor",
green: {
nyanza: "#d8f3dc",
"turquoise-green": "#b7e4c7",
"turquoise-green-two": "#95d5b2",
"ocean-green": "#74c69d",
"ocean-green-two": "#52b788",
"illuminating-emerald": "#40916c",
"bottle-green": "#2d6a4f",
"msu-green": "#1B4332",
"brunswick-green": "#1b4332",
"dark-jungle-green": "#081c15",
"medium-spring-green": "#52FFB8",
},
gray: {
DEFAULT: "#6B7280",
"pale-silver": "#BFB7B6",
"battleship-grey": "#848C8E",
},
black: {
DEFAULT: "#000000",
"space-cadet": "#212738",
"rich-black-fogra": "#131B24",
},
white: {
DEFAULT: "#FFFFFF",
"cultured": "#F1F2EE",
},
purple: {
"lavender-floral": "#A083DF"
}
},
/* fontFamily: {
sans: ["Futura", "sans-serif"],
serif: [],
}, */
extend: {
fontFamily: {
sans: ["Orbitron", "Futura", "sans-serif"],
serif: ["Glegoo"]
},
gridTemplateColumns: {
banner: "repeat(9, minmax(30px, auto))",
},
dropShadow: {
"md-thick": "0 4px 4px rgba(0, 0, 0, 0.70)",
"3xl": "0 35px 35px rgba(0, 0, 0, 0.25)",
},
width: {
hd: "1920px",
},
height: {
hd: "1080px",
},
screens: {
'xl': '1440px',
'2xl': '2560px',
},
},
},
variants: {
animation: ["responsive", "motion-safe", "motion-reduce"],
extend: {},
},
plugins: [],
};