forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change font and colour of the whole UI
- Loading branch information
1 parent
7c12560
commit 0c0d8f5
Showing
6 changed files
with
62 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
|
||
.error { | ||
-fx-text-fill: #d06651 !important; /* The error class should always override the default text-fill style */ | ||
-fx-text-fill: #d06651 !important; /* Error color: a distinct red for error messages */ | ||
} | ||
|
||
.list-cell:empty { | ||
/* Empty cells will not have alternating colours */ | ||
-fx-background: #383838; | ||
/* Empty cells will not have alternating colors */ | ||
-fx-background-color: #031926; /* Matches the dark background theme */ | ||
} | ||
|
||
.tag-selector { | ||
-fx-border-width: 1; | ||
-fx-border-color: white; | ||
-fx-border-color: #77ACA2; /* Teal color to match the theme */ | ||
-fx-border-radius: 3; | ||
-fx-background-radius: 3; | ||
-fx-background-color: transparent; /* Transparent background to blend with dark theme */ | ||
} | ||
|
||
.tooltip-text { | ||
-fx-text-fill: white; | ||
-fx-text-fill: white; /* White text for clear readability on tooltips */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#copyButton, #helpMessage { | ||
-fx-text-fill: white; | ||
-fx-text-fill: white; /* Consistent white text for buttons and help message */ | ||
} | ||
|
||
#copyButton { | ||
-fx-background-color: dimgray; | ||
-fx-background-color: #031926; /* Dark background for consistency */ | ||
} | ||
|
||
#copyButton:hover { | ||
-fx-background-color: gray; | ||
-fx-background-color: derive(#031926, 15%); /* Slightly lighter shade for hover */ | ||
} | ||
|
||
#copyButton:armed { | ||
-fx-background-color: darkgray; | ||
-fx-background-color: derive(#031926, 30%); /* Even lighter shade for armed state */ | ||
} | ||
|
||
#helpMessageContainer { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
-fx-background-color: derive(#031926, 20%); /* Consistent dark blueish background */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters