Skip to content

Commit 87e8a65

Browse files
committed
Autocommit from 2023-08-27 21:04:25
Klipper on commit: 5f990f9 Moonraker on commit: fe12095 Mainsail version: v2.7.1
1 parent f024805 commit 87e8a65

11 files changed

+313
-0
lines changed

.theme-orig/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Toolhead Theme
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

.theme-orig/README.md

Whitespace-only changes.

.theme-orig/custom.css

+189
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
/* .
2+
This is a dark-mode theme for mainsail
3+
including Voron Toolheads and red and black accent colors
4+
5+
*/
6+
7+
:root {
8+
--Primary: #282a36; /*Voron:Black*/
9+
--Secondary: #ff5555; /*Voron:Red*/
10+
--Green: #50fa7b; /*Voron:Green*/
11+
--Red: #ff5555; /*Voron:Red*/
12+
--Warnings: #ffb86c; /*Voron:Orange*/
13+
--Text: #f8f8f2; /*Voron:Foreground*/
14+
--DarkerText: #f5f5f2; /*Voron: DarkerText/
15+
--Background: #44475a; /*Voron:CurrentLine*/
16+
--DarkBackground: #282a36; /*Voron:Background*/
17+
--Toolbars: #44475a; /*Voron:CurrentLine*/
18+
--Sheets: #282a36; /*Voron:Background*/
19+
}
20+
21+
/* Change Colors of toolbar & warning */
22+
23+
#nav-header .v-toolbar__title {
24+
font-size: 24px;
25+
vertical-align: middle;
26+
color: white;
27+
font-family: monospace;
28+
}
29+
30+
.v-application .warning {
31+
background-color: #ff5252 !important;
32+
border-color: #ff5252 !important;
33+
}
34+
35+
.v-application .primary {
36+
background-color: black !important;
37+
}
38+
39+
40+
/* Change Color of text */
41+
.v-btn__content .v-toolbar__title {
42+
color: var(--Text) !important;
43+
}
44+
.text--darken-2 {
45+
color: var(--Text) !important;
46+
}
47+
.subheading {
48+
color: var(--Text) !important;
49+
}
50+
.theme--dark.v-icon, .v-btn__content, .v-text-field__suffix {
51+
color: var(--Text) !important;
52+
}
53+
.theme--dark.v-input, .theme--dark.v-input input, .theme--dark.v-input textarea {
54+
color: var(--Text) !important;
55+
}
56+
.v-application .blue--text {
57+
color: var(--Text) !important;
58+
}
59+
.text-body-2 {
60+
color: var(--Text) !important;
61+
}
62+
63+
/* Change color of primary */
64+
65+
.v-application .primary--text {
66+
color: white!important;
67+
caret-color: white !important;
68+
}
69+
.v-application .blue--text {
70+
color: white!important;
71+
caret-color: white !important;
72+
}
73+
74+
/* application changes */
75+
76+
.v-application .info {
77+
background-color: black!important;
78+
border-color: black!important;
79+
}
80+
.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot:focus-within {
81+
border: thin solid var(--Primary) !important;
82+
}
83+
.v-text-field.v-text-field--solo .v-input__control input {
84+
caret-color: var(--Primary);
85+
}
86+
.theme--dark.v-color-picker .v-color-picker__input input {
87+
border: thin solid var(--Primary);
88+
color: var(--Text);
89+
}
90+
91+
/*Change color of print circle & pause/cancel/resume button*/
92+
93+
.v-application .orange {
94+
background-color: #ff5252 !important;
95+
border color: #ff5252 !important;
96+
}
97+
98+
.v-progress-circular__overlay {
99+
stroke: #ff5252 !important;
100+
}
101+
102+
/* Change Background and Toolbars */
103+
body {
104+
background-color: var(--Background);
105+
}
106+
.v-sheet {
107+
border-color: var(--Background);
108+
}
109+
110+
/*
111+
CHANGE content of icons
112+
Material Desgin Icons can be found on https://pictogrammers.github.io/@mdi/font/5.2.45/
113+
*/
114+
115+
/* "Cog"/Gearwheel to Wrench */
116+
.mdi-cog:before {
117+
content: "\F05B7";
118+
}
119+
120+
/* Heatbed to Campfire */
121+
.mdi-radiator-disabled:before {
122+
content: "\F0EDD";
123+
}
124+
125+
/* Heatbed to Campfire */
126+
.mdi-radiator:before {
127+
content: "\F0EDD";
128+
}
129+
130+
/* Thermometer to Temp Chart */
131+
.mdi-thermometer-lines:before {
132+
content: "\F0FA7";
133+
}
134+
135+
/* Controls to Camera Control Slider */
136+
.mdi-gamepad:before {
137+
content: "\F0B69";
138+
}
139+
140+
/* Code-Tags to Keyboard */
141+
.mdi-code-tags:before {
142+
content: "\F0313";
143+
}
144+
145+
/* Dipswitch to Tune */
146+
.mdi-dip-switch:before {
147+
content: "\F062E";
148+
}
149+
150+
/* Home to Home Group */
151+
.mdi-home:before {
152+
content: "\F0DD4";
153+
}
154+
155+
/* Arrow-collapse vertical to single bar collapse */
156+
.mdi-arrow-collapse-vertical:before {
157+
content: "\F0622"
158+
}
159+
160+
161+
/* console to boxed console */
162+
.mdi-console-line:before {
163+
content: "\F018D"
164+
}
165+
166+
/* "Cog"/Gearwheel to Wrench */
167+
.mdi-wrench:before {
168+
content: "\F0493";
169+
}
170+
171+
/* Dashboard Monitor to Dashboard window */
172+
.mdi-monitor-dashboard:before {
173+
content: "\F0A1D";
174+
}
175+
176+
/* History to Profile History */
177+
.mdi-history:before {
178+
content: "\F0B56";
179+
}
180+
181+
/* Printer Dashboard to 3d Printer */
182+
.mdi-view-dashboard-outline:before {
183+
content: "\F042B";
184+
}
185+
186+
/* Question-mark to Information/About */
187+
.mdi-help-circle-outline:before {
188+
content: "\F02FD";
189+
}

.theme-orig/favicon-32x32.png

1.25 KB
Loading

.theme-orig/favicon-64x64.png

3.41 KB
Loading

.theme-orig/screenshot.png

183 KB
Loading

.theme-orig/sidebar-background.png

40.6 KB
Loading

.theme-orig/sidebar-logo.svg

+47
Loading

.theme-orig/sidebar-logoMicron.svg

+1
Loading

.theme-orig/sidebar-logoSaladFork.svg

+54
Loading

.theme-orig/sidebar-logo_alternate-white.svg

+1
Loading

0 commit comments

Comments
 (0)