-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (66 loc) · 1.46 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
module.exports = {
content: ["./pages/**/*.{html,js,tsx,ts}", "./components/**/*.{html,js,tsx,ts}"],
theme: {
extend: {
colors: {
electric: "#db00ff",
ribbon: "#0047ff",
// Neutrals
black: {
DEFAULT: "#000000",
900: "#121212",
800: "#1e1e1e",
700: "#222222",
600: "#242424",
500: "#272727",
400: "#2c2c2c",
300: "#2d2d2d",
200: "#333333",
100: "#353535",
50: "#383838",
},
darkgrey: "#303030",
grey: "#999999",
softgrey: "#cccccc",
white: "#fff",
// Primary Colors
aqua: "#21fefd",
salmon: "#f87980",
lemon: "#ffff7b",
// Accents
orchid: "#c149d7",
skyblue: "#35cdea",
fuschia: "#ff00ec",
violet: "#9e00ff",
fanta: "#ff007a",
darkblue: "#182380",
oxford: "#0a0933",
bluegray: "#3846c4",
popblue: "#0030ff",
// States
success: "#4cc667",
danger: "#e73636",
warning: "#ffcc00",
info: "#3f66da",
},
fontFamily: {
retro: ["Retro", "sans-serif"],
sans: ["DM Sans"],
},
fontSize: {
"p-lg": "24px",
"p-md": "16px",
"p-sm": "12px",
},
screens: {
"3xl": "1792px",
},
},
},
plugins: [],
variants: {
extend: {
height: ["hover"],
},
},
}