forked from eriroh/Mainsail-x-Voron-Toolhead-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
191 lines (158 loc) · 4.13 KB
/
custom.css
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* .
This is a dark-mode theme for mainsail
including Voron Toolheads and red and black accent colors
*/
:root {
--Primary: #282a36; /*Voron:Black*/
--Secondary: #ff5555; /*Voron:Red*/
--Green: #50fa7b; /*Voron:Green*/
--Red: #ff5555; /*Voron:Red*/
--Warnings: #ffb86c; /*Voron:Orange*/
--Text: #f8f8f2; /*Voron:Foreground*/
--DarkerText: #f5f5f2; /*Voron: DarkerText/
--Background: #44475a; /*Voron:CurrentLine*/
--DarkBackground: #282a36; /*Voron:Background*/
--Toolbars: #44475a; /*Voron:CurrentLine*/
--Sheets: #282a36; /*Voron:Background*/
}
/* Change Colors of toolbar & warning */
#nav-header .v-toolbar__title {
font-size: 24px;
vertical-align: middle;
color: white;
font-family: monospace;
}
.v-application .warning {
background-color: #ff5252 !important;
border-color: #ff5252;
}
.v-application .primary {
background-color: black !important;
}
.v-application .text-body-2, .v-application .text-button {
font-size: .875rem!important;
font-family: Roboto,sans-serif!important;
color: black;
}
/* Change Color of text */
.v-btn__content .v-toolbar__title {
color: var(--Text) !important;
}
.text--darken-2 {
color: var(--Text) !important;
}
.subheading {
color: var(--Text) !important;
}
.theme--dark.v-icon, .v-btn__content, .v-text-field__suffix {
color: var(--Text) !important;
}
.theme--dark.v-input, .theme--dark.v-input input, .theme--dark.v-input textarea {
color: var(--Text) !important;
}
.v-application .blue--text {
color: var(--Text) !important;
}
/* Change color of primary */
.v-application .primary--text {
color: white!important;
caret-color: white !important;
}
.v-application .blue--text {
color: white!important;
caret-color: white !important;
}
/* application changes */
.v-application .info {
background-color: black!important;
border-color: black!important;
}
.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot:focus-within {
border: thin solid var(--Primary) !important;
}
.v-text-field.v-text-field--solo .v-input__control input {
caret-color: var(--Primary);
}
.theme--dark.v-color-picker .v-color-picker__input input {
border: thin solid var(--Primary);
color: var(--Text);
}
/*Change color of print circle & pause/cancel/resume button*/
.v-application .orange {
background-color: #ff5252 !important;
border color: #ff5252 !important;
}
.v-progress-circular__overlay {
stroke: #ff5252 !important;
}
/* Change Background and Toolbars */
body {
background-color: var(--Background);
}
.v-sheet {
border-color: var(--Background);
}
/*
CHANGE content of icons
Material Desgin Icons can be found on https://pictogrammers.github.io/@mdi/font/5.2.45/
*/
/* "Cog"/Gearwheel to Wrench */
.mdi-cog:before {
content: "\F05B7";
}
/* Heatbed to Campfire */
.mdi-radiator-disabled:before {
content: "\F0EDD";
}
/* Heatbed to Campfire */
.mdi-radiator:before {
content: "\F0EDD";
}
/* Thermometer to Temp Chart */
.mdi-thermometer-lines:before {
content: "\F0FA7";
}
/* Controls to Camera Control Slider */
.mdi-gamepad:before {
content: "\F0B69";
}
/* Code-Tags to Keyboard */
.mdi-code-tags:before {
content: "\F0313";
}
/* Dipswitch to Tune */
.mdi-dip-switch:before {
content: "\F062E";
}
/* Home to Home Group */
.mdi-home:before {
content: "\F0DD4";
}
/* Arrow-collapse vertical to single bar collapse */
.mdi-arrow-collapse-vertical:before {
content: "\F0622"
}
/* console to boxed console */
.mdi-console-line:before {
content: "\F018D"
}
/* "Cog"/Gearwheel to Wrench */
.mdi-wrench:before {
content: "\F0493";
}
/* Dashboard Monitor to Dashboard window */
.mdi-monitor-dashboard:before {
content: "\F0A1D";
}
/* History to Profile History */
.mdi-history:before {
content: "\F0B56";
}
/* Printer Dashboard to 3d Printer */
.mdi-view-dashboard-outline:before {
content: "\F042B";
}
/* Question-mark to Information/About */
.mdi-help-circle-outline:before {
content: "\F02FD";
}