added fundamental css files, theoretically added css support
This commit is contained in:
5
src/main/resources/fxml/themes/base.css
Normal file
5
src/main/resources/fxml/themes/base.css
Normal file
@ -0,0 +1,5 @@
|
||||
.root{
|
||||
-fx-font: 200pt "Serif";
|
||||
--background=#00FF00;
|
||||
background: var(--background);
|
||||
}
|
0
src/main/resources/fxml/themes/custom.css
Normal file
0
src/main/resources/fxml/themes/custom.css
Normal file
7
src/main/resources/fxml/themes/dark.css
Normal file
7
src/main/resources/fxml/themes/dark.css
Normal file
@ -0,0 +1,7 @@
|
||||
.root{
|
||||
--background=#000000;
|
||||
background: var(--background);
|
||||
}
|
||||
.button{
|
||||
color: rgb(105,0,153);
|
||||
}
|
0
src/main/resources/fxml/themes/light.css
Normal file
0
src/main/resources/fxml/themes/light.css
Normal file
Reference in New Issue
Block a user