-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add customized logo and apply branding colors
- Loading branch information
1 parent
403b137
commit c400224
Showing
4 changed files
with
43 additions
and
5 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,29 @@ | ||
/* Dark mode colors. */ | ||
:root { | ||
--sl-color-accent-low: #131e4f; | ||
--sl-color-accent: #3447ff; | ||
--sl-color-accent-high: #b3c7ff; | ||
--sl-color-white: #ffffff; | ||
--sl-color-gray-1: #eceef2; | ||
--sl-color-gray-2: #c0c2c7; | ||
--sl-color-gray-3: #888b96; | ||
--sl-color-gray-4: #545861; | ||
--sl-color-gray-5: #353841; | ||
--sl-color-gray-6: #24272f; | ||
--sl-color-black: #17181c; | ||
} | ||
/* Light mode colors. */ | ||
:root[data-theme='light'] { | ||
--sl-color-accent-low: #c7d6ff; | ||
--sl-color-accent: #03464c; | ||
--sl-color-accent-high: #182775; | ||
--sl-color-white: #17181c; | ||
--sl-color-gray-1: #24272f; | ||
--sl-color-gray-2: #353841; | ||
--sl-color-gray-3: #545861; | ||
--sl-color-gray-4: #888b96; | ||
--sl-color-gray-5: #c0c2c7; | ||
--sl-color-gray-6: #eceef2; | ||
--sl-color-gray-7: #f5f6f8; | ||
--sl-color-black: #ffffff; | ||
} |