-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathlight.js
More file actions
50 lines (47 loc) · 1.29 KB
/
Copy pathlight.js
File metadata and controls
50 lines (47 loc) · 1.29 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
49
50
import { lightThemeId } from "../constants/themeIds";
const buttonBackgroundColor = "lightgray";
const light = {
themeId: lightThemeId,
author: "ImACoderImACoderImACoder",
borderStyle: "solid",
borderColor: "#FF6600",
buttonColorMain: buttonBackgroundColor,
currentTemperatureColor: "#FF6600",
targetTemperatureColor: "black",
buttonActive: {
color: "white",
backgroundColor: "#FF6600",
borderColor: "white",
},
backgroundColor: "white",
primaryFontColor: "black",
iconColor: "#FF6600",
iconTextColor: "black",
plusMinusButtons: {
backgroundColor: buttonBackgroundColor,
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: buttonBackgroundColor,
sliderBorderColorOn: "#f8f9fa",
onBackgroundColor: "#FF6600",
onBorderColor: "black",
onColor: "#fff",
offBackgroundColor: buttonBackgroundColor,
offBorderColor: "black",
offColor: "black",
},
};
export default light;