-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (33 loc) · 942 Bytes
/
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
module.exports = {
purge: {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
options: {
keyframes: true,
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
cornFlowerBlue: "#5582EF",
cornFlowerBlue_light: "#668ff1",
easternBlue: "#1984B8",
easternBlue_light: "#3090bf",
ribbonBlue: "#2464FC",
ribbonBlue_light: "#3a74fc",
carnationRed: "#F64F71",
carnationRed_light: "#f7617f",
webOrange: "#FFA700",
webOrange_light: "#ffb01a",
success: "#5cb85c",
warning: "#f0ad4e",
danger: "#d9534f",
info: "#5bc0de",
},
},
},
variants: {
extend: {},
},
plugins: [],
};