-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathfun.js
More file actions
67 lines (64 loc) · 2.02 KB
/
Copy pathfun.js
File metadata and controls
67 lines (64 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { funId } from "../constants/themeIds";
const buttonBackgroundColor = "#201c1c";
const pride = {
author: "ImACoderImACoderImACoder",
themeId: funId,
buttonColorMain: buttonBackgroundColor,
borderColor: "#D2D2D2",
currentTemperatureColor: "#ed75b3",
targetTemperatureColor: "#ed75b3",
primaryFontColor: "white",
plusMinusButtons: {
backgroundColor: buttonBackgroundColor,
borderColor: "#D2D2D2",
color: "white",
},
buttonActive: {
color: "white",
backgroundColor: "black",
borderColor: "darkviolet",
},
backgroundColor: "black",
iconColor: "darkviolet",
iconTextColor: "#ed75b3",
temperatureRange: {
lowTemperatureColor: "red",
highTemperatureColor: "#ff5d7a",
background: `linear-gradient(
-90deg,
rgba(255, 0, 0, 1) 0%,
rgba(255, 154, 0, 1) 20%,
rgba(208, 222, 33, 1) 30%,
rgba(79, 220, 74, 1) 40%,
rgba(63, 218, 216, 1) 50%,
rgba(47, 201, 226, 1) 60%,
rgba(28, 127, 238, 1) 70%,
rgba(95, 21, 242, 1) 80%,
rgba(186, 12, 248, 1) 90%,
rgba(251, 7, 217, 1) 100%`,
rangeBoxColor: "#ea379d",
rangeBoxBorderColor: "white",
rangeBackground: `linear-gradient(
90deg,
rgb(85, 205, 252) 0%, rgb(85, 205, 252) 20%,
rgb(247, 168, 184) 20%, rgb(247, 168, 184) 40%,
rgb(255, 255, 255) 40%, rgb(255, 255, 255) 60%,
rgb(247, 168, 184) 60%, rgb(247, 168, 184) 80%,
rgb(85, 205, 252) 80%, rgb(85, 205, 252) 100%)`,
},
workflowEditor: {
accordianExpandedColor: "#2d3237",
},
ToggleButtons: {
sliderBackgroundColorOn: "white",
sliderBorderColorOn: "#f8f9fa",
onBackgroundColor:
"linear-gradient(180deg,rgb(255,0,0) 0% 16.77%,rgb(255 153 0) 16.77% 33.54%,rgb(236 255 0) 33.54% 50.31%,rgb(75 255 0) 50.31% 67.08%,rgb(18 0 255) 67.08% 83.85%,rgb(143,0,255) 83.85% 100%)",
onBorderColor: "gray",
onColor: "white",
offBackgroundColor: buttonBackgroundColor,
offBorderColor: "white",
offColor: "black",
},
};
export default pride;