Adds new color variable for styling status check tooltips

This commit is contained in:
Alicia Sykes 2021-06-19 14:10:55 +01:00
parent ca3d171e47
commit c81d57f02d
2 changed files with 4 additions and 0 deletions

View File

@ -116,6 +116,8 @@ You can target specific elements on the UI with these variables. All are optiona
- `--welcome-popup-text-color` - Text color for the welcome pop-up. Defaults to `--primary`
- `--side-bar-background` - Background color of the sidebar used in the workspace view. Defaults to `--background-darker`
- `--side-bar-color` - Color of icons and text within the sidebar. Defaults to `--primary`
- `--status-check-tooltip-background` - Background color for status check tooltips. Defaults to `--background-darker`
- `--status-check-tooltip-color` - Text color for the status check tooltips. Defaults to `--primary`
#### Non-Color Variables
- `--outline-color` - Used to outline focused or selected elements

View File

@ -74,4 +74,6 @@
--side-bar-background: var(--background-darker);
--side-bar-background-lighter: var(--background);
--side-bar-color: var(--primary);
--status-check-tooltip-background: var(--background-darker);
--status-check-tooltip-color: var(--primary);
}