-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1954 from holly-cummins/reinstate-dark-mode-frame…
…work Reinstate dark mode framework (with dark mode disabled)
- Loading branch information
Showing
35 changed files
with
820 additions
and
66 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
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
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
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,54 @@ | ||
|
||
html { | ||
--link-color: #1259A5; | ||
--link-color-hover: #CC0000; | ||
--link-color-visited: #AA4494; | ||
--main-background-color: #FFFFFF; | ||
--main-text-color: #121212; | ||
--main-code-color: #943000; | ||
--sec-border-color: #aaa; | ||
--sec-background-color: #EFEFEF; | ||
--title-background-color: #0d1c2c; | ||
--breadcrumb-background-color: #4695EB; | ||
|
||
--card-outline: #AAAAAA; | ||
--card-background-color: #FFFFFF; | ||
--card-background-color-hover: #e4edf7; | ||
|
||
} | ||
|
||
/* @media (prefers-color-scheme: dark) { */ | ||
@media screen and (max-width: 1px) { | ||
html { | ||
--link-color: #9BCAFA; | ||
--link-color-hover: #CC0000; | ||
--link-color-visited: #AA4494; | ||
--main-background-color: #121212; | ||
--main-text-color: #B5B5B5; | ||
--main-code-color: #F59B00; | ||
--sec-background-color: #333333; | ||
--title-background-color: #0e0e0e; | ||
--breadcrumb-background-color: #0d1c2c; | ||
|
||
--card-outline: #555555; | ||
--card-background-color: #0f0f0f; | ||
--card-background-color-hover: #333333; | ||
} | ||
|
||
// code highlighting overrides // | ||
.hljs-built_in, .hljs-selector-tag, .hljs-section, .hljs-link, .hljs-function, .hljs-params { color: #6a9fb5 !important;} | ||
.hljs-title, .hljs-attr { color: #d28445 !important; } | ||
.hljs-string, .hljs-meta, .hljs-name, .hljs-type, .hljs-symbol, .hljs-bullet, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable { color: #90a959 !important; } | ||
.hljs-comment, .hljs-quote, .hljs-deletion { color: #75b5aa !important; } | ||
.hljs-literal, .hljs-number { color: #d28445 !important; } | ||
|
||
// Table overrides // | ||
table.tableblock tbody tr:nth-child(even) { background-color: transparent !important; } | ||
table.tableblock thead th { background-color: #333333 !important; } | ||
|
||
// project footer // | ||
.project-footer { | ||
background-image: none !important; | ||
background-color: var(--title-background-color) !important; } | ||
|
||
} |
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
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
Oops, something went wrong.