-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
:root { | ||
/* Override primary and secondary theme colors */ | ||
--pst-color-primary: #4bb3fdff; /* Dodger Blue */ | ||
--pst-color-secondary: #6432bdff; /* Grape */ | ||
|
||
/* Override hover colors */ | ||
--pst-color-link-hover: #2a9df4; /* Lighter Dodger Blue for hover */ | ||
--pst-color-button-hover-bg: #3C1E71; /* Grape for button hover background */ | ||
--pst-color-button-hover-text: #ffffff; /* White text for button hover */ | ||
|
||
/* If buttons have a secondary hover color */ | ||
--pst-color-button-secondary-hover-bg: #3C1E71; /* Darker Grape for secondary button hover */ | ||
} | ||
|
||
html[data-theme="light"] { | ||
/* Custom colors for the light theme */ | ||
--pst-color-primary: #4bb3fdff; /* Dodger Blue */ | ||
--pst-color-secondary: #6432bdff; /* Grape */ | ||
--pst-color-link-hover: #2a9df4; /* Lighter Dodger Blue */ | ||
} | ||
|
||
html[data-theme="dark"] { | ||
/* Custom colors for the dark theme */ | ||
--pst-color-primary: #4bb3fdff; /* Dodger Blue */ | ||
--pst-color-secondary: #9d7eea; /* Lighter Grape */ | ||
--pst-color-link-hover: #2a9df4; /* Lighter Dodger Blue */ | ||
} |
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