-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (34 loc) · 854 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (34 loc) · 854 Bytes
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
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
colors: {
transparent: "transparent",
current: "currentColor",
lightblue: {
100: "#e3f8ff",
200: "#a7e5fb",
300: "#6dd1f6",
400: "#35c0f2",
500: "#00aded",
600: "#0195d4",
700: "#027dbb",
800: "#0367a1",
900: "#035388",
},
bhsdb: "#223160",
bhsb: "#18557f",
red: "#ff0000",
orange: "#ffc000",
green: "#00b050",
purple: "#7030a0",
black: "#000",
white: "#fff",
},
},
variants: {
extend: {},
},
plugins: [],
};