-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathlight.js
More file actions
48 lines (46 loc) · 1.19 KB
/
light.js
File metadata and controls
48 lines (46 loc) · 1.19 KB
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
import { lightThemeId } from "../constants/themeIds";
const light = {
themeId: lightThemeId,
author: "ImACoderImACoderImACoder",
borderStyle: "solid",
borderColor: "#FF6600",
buttonColorMain: "white",
currentTemperatureColor: "#FF6600",
targetTemperatureColor: "black",
buttonActive: {
color: "white",
backgroundColor: "#FF6600",
borderColor: "white",
},
backgroundColor: "white",
primaryFontColor: "black",
iconColor: "#FF6600",
iconTextColor: "black",
plusMinusButtons: {
backgroundColor: "white",
color: "black",
borderColor: "FF6600",
},
workflowEditor: {
accordianExpandedColor: "#FF6600",
},
temperatureRange: {
lowTemperatureColor: "#f53803",
highTemperatureColor: "#f5d020",
background: "linear-gradient(315deg, #f53803 0%, #f5d020 74%)",
rangeBoxColor: "black",
rangeBoxBorderColor: "orange",
},
ToggleButtons: {
sliderBackgroundColorOn: "#FF6600",
sliderBackgroundColorOff: "gray",
sliderBorderColor: "#f8f9fa",
onBackgroundColor: "#FF6600",
onBorderColor: "black",
onColor: "#fff",
offBackgroundColor: "gray",
offBorderColor: "black",
offColor: "#fff",
},
};
export default light;