-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTML generation: make the light theme lighter (#3168)
* Closes #3141 * Adds the `latte-light` theme with lighter background and makes it the default. This is a bit subjective, but in my opinion the light theme should not have a background darker than the browser window pane. It should be close to white.
- Loading branch information
Showing
4 changed files
with
39 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Lighter version of the latte color palette based on https://github.com/catppuccin/catppuccin#-palette */ | ||
|
||
:root { | ||
--ctp-rosewater: #dc8a78; | ||
--ctp-flamingo: #dd7878; | ||
--ctp-pink: #ea76cb; | ||
--ctp-mauve: #8839ef; | ||
--ctp-red: #d20f39; | ||
--ctp-maroon: #e64553; | ||
--ctp-peach: #fe640b; | ||
--ctp-yellow: #df8e1d; | ||
--ctp-green: #40a02b; | ||
--ctp-teal: #179299; | ||
--ctp-sky: #04a5e5; | ||
--ctp-sapphire: #209fb5; | ||
--ctp-blue: #1e66f5; | ||
--ctp-lavender: #7287fd; | ||
--ctp-text: #4c4f69; | ||
--ctp-subtext1: #5c5f77; | ||
--ctp-subtext0: #6c6f85; | ||
--ctp-overlay2: #7c7f93; | ||
--ctp-overlay1: #8c8fa1; | ||
--ctp-overlay0: #9ca0b0; | ||
--ctp-surface2: #acb0be; | ||
--ctp-surface1: #bcc0cc; | ||
--ctp-surface0: #ccd0da; | ||
--ctp-base: #fbfcff; | ||
--ctp-mantle: #f0f3f9; | ||
--ctp-crust: #dce0e8; | ||
} |
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