generated from rts-cmk-opgaver/praktikperiode-smartlights
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
72 lines (69 loc) · 1.52 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
background: "#0A4DA2",
container: "#F6F8FB",
footer: "#FFFFFF",
pageHeading: "#FFFFFF",
containerHeading: "#002D67",
cardHeading: "#393939",
lightCount: {
small: "#FFA939",
big:"#FFD239",
},
buttonText: {
active: "#FFFFFF",
inactive: "#002D67",
},
buttonBackground: {
active: "#002D67",
inactive: "#FFFFFF",
},
profileIcon: {
border: "#FFFFFF",
notification: "#FF9898",
},
intensitySelector: {
activeMeter: "#FFD339",
inactiveMeter: "#CECECE",
setting: "#CECECE",
adjuster: "#FFFFFF",
},
powerButton: {
background: "#FFFFFF",
icon: "#FF9696",
},
buttonRed: {
start: "#FF9B9B",
end: "#FFBC91",
},
buttonPurple: {
start: "#A693EB",
end: "#DA93EB",
},
buttonBlue: {
start: "#93CAEB",
end: "#93DDEB",
},
buttonGreen: {
start: "#89DD94",
end: "#BFEC92",
},
colorIcon: {
red: "#FF9B9B",
green: "#94EB9E",
blue: "#94CAEB",
purple: "#A594EB",
pink: "#DE94EB",
yellow: "#EBD094",
white: "#FFFFFF",
}
}
},
},
plugins: [],
}