diff --git a/docs/theming.md b/docs/theming.md index 5a90180a..7b6966fb 100644 --- a/docs/theming.md +++ b/docs/theming.md @@ -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 diff --git a/src/styles/color-palette.scss b/src/styles/color-palette.scss index ebc431ea..24c734d7 100644 --- a/src/styles/color-palette.scss +++ b/src/styles/color-palette.scss @@ -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); }