-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace static colors with VSCode CSS variables (#1682)
* Remove light colors * Replace most colors with VSCode variable equivalents Co-authored-by: mattseddon <37993418+mattseddon@users.noreply.github.com>
- Loading branch information
1 parent
b7871d7
commit bd08a53
Showing
3 changed files
with
10 additions
and
77 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,11 +1,4 @@ | ||
$fg-color: var(--vscode-editor-foreground); | ||
$bg-color: var(--vscode-editor-background); | ||
$bullet-size: 9px; | ||
|
||
// Dark | ||
|
||
$watermark-color: rgba(255, 255, 255, 0.6); | ||
|
||
// Light | ||
|
||
$watermark-color-light: rgba(0, 0, 0, 0.68); | ||
$watermark-color: var(--vscode-descriptionForeground); |