-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: colorschemes * allo custom stream title
- Loading branch information
1 parent
7145d7a
commit a4dffff
Showing
21 changed files
with
709 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* Marmite Catppuccin Theme */ | ||
/* picocss.com */ | ||
:root { | ||
--pico-border-radius: 0; | ||
} | ||
|
||
.content-tags a:where(a:not([role=button])), | ||
[role=link] { | ||
--pico-color: revert; | ||
} | ||
|
||
/* Light Mode - Latte */ | ||
[data-theme=light], | ||
:root:not([data-theme=dark]) { | ||
--pico-background-color: #e6e9ef; | ||
--pico-card-background-color: #eff1f5; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #8839ef; | ||
--pico-primary-hover: #ea76cb; | ||
--pico-color: #4c4f69; | ||
--pico-tag: #acb0be; | ||
--pico-h1-color: var(--pico-primary); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=light] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-card-background-color); | ||
} | ||
|
||
/* Dark Mode - Mocha */ | ||
[data-theme=dark], | ||
:root:not([data-theme=light]) { | ||
--pico-background-color: #1e1e2e; | ||
--pico-card-background-color: #302d41; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #cba6f7; | ||
--pico-primary-hover: #f5c2e7; | ||
--pico-color: #cdd6f4; | ||
--pico-tag: #585b70; | ||
--pico-h1-color: var(--pico-color); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=dark] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-code-color); | ||
} |
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,50 @@ | ||
/* Marmite Dracula Theme */ | ||
/* picocss.com */ | ||
:root { | ||
--pico-border-radius: 0; | ||
} | ||
|
||
.content-tags a:where(a:not([role=button])), | ||
[role=link] { | ||
--pico-color: revert; | ||
} | ||
|
||
/* Light Mode */ | ||
[data-theme=light], | ||
:root:not([data-theme=dark]) { | ||
--pico-background-color: #f8f8f2; | ||
--pico-card-background-color: #ffffff; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #6272a4; | ||
--pico-primary-hover: #44475a; | ||
--pico-color: #282a36; | ||
--pico-tag: #8671a3; | ||
--pico-h1-color: #44475a; | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=light] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-card-background-color); | ||
} | ||
|
||
/* Dark Mode */ | ||
[data-theme=dark], | ||
:root:not([data-theme=light]) { | ||
--pico-background-color: #282a36; | ||
--pico-card-background-color: #44475a; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #bd93f9; | ||
--pico-primary-hover: #ff79c6; | ||
--pico-color: #f8f8f2; | ||
--pico-tag: #6272a4; | ||
--pico-h1-color: var(--pico-color); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=dark] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-code-color); | ||
} |
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,48 @@ | ||
/* Marmite Github Theme */ | ||
/* picocss.com */ | ||
:root { | ||
--pico-border-radius: 0; | ||
} | ||
|
||
.content-tags a:where(a:not([role=button])), | ||
[role=link] { | ||
--pico-color: revert; | ||
} | ||
|
||
[data-theme=light], | ||
:root:not([data-theme=dark]) { | ||
--pico-background-color: #ffffff; | ||
--pico-card-background-color: #f6f8fa; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #0969da; | ||
--pico-primary-hover: #0366d6; | ||
--pico-color: #24292f; | ||
--pico-tag: #57606a; | ||
--pico-h1-color: var(--pico-primary); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: #d0d7de; | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=light] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-card-background-color); | ||
} | ||
|
||
[data-theme=dark], | ||
:root:not([data-theme=light]) { | ||
--pico-background-color: #0d1117; | ||
--pico-card-background-color: #161b22; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #58a6ff; | ||
--pico-primary-hover: #1f6feb; | ||
--pico-color: #c9d1d9; | ||
--pico-tag: #8b949e; | ||
--pico-h1-color: var(--pico-color); | ||
--pico-code-background-color: #323d4b; | ||
--pico-table-border-color: #30363d; | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=dark] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-code-background-color); | ||
} |
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,48 @@ | ||
/* Marmite Gruvbox Theme */ | ||
/* picocss.com */ | ||
:root { | ||
--pico-border-radius: 0; | ||
} | ||
|
||
.content-tags a:where(a:not([role=button])), | ||
[role=link] { | ||
--pico-color: revert; | ||
} | ||
|
||
[data-theme=light], | ||
:root:not([data-theme=dark]) { | ||
--pico-background-color: #fbf1c7; | ||
--pico-card-background-color: #ebdbb2; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #b57614; | ||
--pico-primary-hover: #d79921; | ||
--pico-color: #3c3836; | ||
--pico-tag: #7c6f64; | ||
--pico-h1-color: var(--pico-primary); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=light] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-card-background-color); | ||
} | ||
|
||
[data-theme=dark], | ||
:root:not([data-theme=light]) { | ||
--pico-background-color: #282828; | ||
--pico-card-background-color: #3c3836; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #d79921; | ||
--pico-primary-hover: #fabd2f; | ||
--pico-color: #ebdbb2; | ||
--pico-tag: #a89984; | ||
--pico-h1-color: var(--pico-color); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=dark] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-code-color); | ||
} |
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,48 @@ | ||
/* Marmite Iceberg Theme */ | ||
/* picocss.com */ | ||
:root { | ||
--pico-border-radius: 0; | ||
} | ||
|
||
.content-tags a:where(a:not([role=button])), | ||
[role=link] { | ||
--pico-color: revert; | ||
} | ||
|
||
[data-theme=light], | ||
:root:not([data-theme=dark]) { | ||
--pico-background-color: #E8F3F8; | ||
--pico-card-background-color: #DDEAF1; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #4B6479; | ||
--pico-primary-hover: #6B8BA4; | ||
--pico-color: #1E272E; | ||
--pico-tag: #3A4A58; | ||
--pico-h1-color: var(--pico-primary); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=light] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-card-background-color); | ||
} | ||
|
||
[data-theme=dark], | ||
:root:not([data-theme=light]) { | ||
--pico-background-color: #1B2B34; | ||
--pico-card-background-color: #243B4A; | ||
--pico-card-sectioning-background-color: var(--pico-background-color); | ||
--pico-primary: #4B6479; | ||
--pico-primary-hover: #6B8BA4; | ||
--pico-color: #C0C5CE; | ||
--pico-tag: #3A4A58; | ||
--pico-h1-color: var(--pico-color); | ||
--pico-code-background-color: var(--pico-background-color); | ||
--pico-table-border-color: var(--pico-card-background-color); | ||
--pico-color-azure-550: var(--pico-primary); | ||
} | ||
|
||
[data-theme=dark] pre:has(> code.language-mermaid) { | ||
background-color: var(--pico-code-color); | ||
} |
Oops, something went wrong.