-
Notifications
You must be signed in to change notification settings - Fork 0
/
DarkTheme.css
103 lines (91 loc) · 2.47 KB
/
DarkTheme.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
/* Label */
.label {
-fx-text-fill: rgb(255, 255, 255, 1.0);
}
/* RadioButton */
.radio-button {
-fx-text-fill:rgb(255, 255, 255, 1.0);
-fx-font-size: 16;
-fx-padding: 4;
-fx-border-color: rgb(0, 0, 0, 0.0);
-fx-background-color: rgb(0, 0, 0, 0.0);
}
/* TextField */
.text-field{
-fx-font-size: 16;
-fx-padding: 4;
-fx-border-color: rgb(148, 148, 148, 1.0);
-fx-border-width: 2;
-fx-border-radius: 0;
-fx-border: gone;
-fx-background-color: rgb(0, 0, 0, 0.0);
-fx-text-fill: rgb(255, 255, 255, 1.0);
}
.text-field:hover{
-fx-font-size: 16;
-fx-padding: 4;
-fx-border-color: rgb(255, 255, 255, 1.0);
-fx-border-width: 2;
-fx-border-radius: 0;
-fx-border: gone;
-fx-background-color: rgb(0, 0, 0, 0.0);
-fx-text-fill: rgb(255, 255, 255, 1.0);
}
.text-field:focused{
-fx-font-size: 16;
-fx-padding: 4;
-fx-border-color: rgb(210, 136, 24, 1.0);
-fx-border-width: 2;
-fx-border-radius: 0;
-fx-border: gone;
-fx-background-color: rgb(0, 0, 0, 0.0);
-fx-text-fill: rgb(255, 255, 255, 1.0);
}
/* Button */
.button {
-fx-font-weight: bold;
-fx-font-size: 18;
-fx-padding: 4 12 4 12;
-fx-background-radius: 0;
-fx-background-color: rgb(0, 0, 0, 0.0);
-fx-border-radius: 0;
-fx-border-color: rgb(210, 136, 24, 1.0);
-fx-border-width: 2;
-fx-text-fill: rgb(210, 136, 24, 1.0);
}
.button:hover {
-fx-font-weight: bold;
-fx-font-size: 18;
-fx-padding: 4 12 4 12;
-fx-background-radius: 0;
-fx-background-color: rgb(0, 0, 0, 0.0);
-fx-border-radius: 0;
-fx-border-color: rgb(255, 188, 86, 1.0);
-fx-border-width: 2;
-fx-text-fill: rgb(255, 188, 86, 1.0);
}
/* Scroll Pane */
.scroll-pane {
-fx-background-color: rgb(54, 57, 63, 1.0);
}
.scroll-bar:horizontal, .scroll-bar:vertical{
-fx-background-color:transparent;
}
.increment-button, .decrement-button {
-fx-background-color: transparent;
-fx-border-color: transparent;
-fx-background-radius: 0em;
-fx-padding:0;
-fx-opacity: 0;
}
.scroll-bar:horizontal .track,
.scroll-bar:vertical .track{
-fx-background-color: rgb(45, 47, 51, 1.0);
-fx-border-color: transparent;
-fx-background-radius: 5em;
}
.scroll-bar:horizontal .thumb,
.scroll-bar:vertical .thumb {
-fx-background-color: rgb(32, 34, 37, 1.0);
-fx-background-radius: 5em;
}