-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
feat(theme): add boba theme (@Chouhan705) #7995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Chouhan705
wants to merge
9
commits into
monkeytypegame:master
Choose a base branch
from
Chouhan705:add-boba-theme
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ce23444
feat(theme): add boba theme
Chouhan705 a88b637
style(theme): remove custom logo gradient overrides
Chouhan705 029889a
style(theme): remove comments from boba theme
Chouhan705 2ade380
style(theme): strip redundant root and layout selectors
Chouhan705 c80400b
Merge branch 'master' into add-boba-theme
Chouhan705 60b06a6
Merge branch 'master' into add-boba-theme
Chouhan705 dea75ca
Merge branch 'master' into add-boba-theme
Chouhan705 47aa89b
Merge branch 'master' into add-boba-theme
Chouhan705 1131e54
trigger
fehmer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,86 @@ | ||
| /* ========================================================================== | ||
| Boba (Bubble Tea) Theme O3O | ||
| A cozy, milk-tea inspired palette with dark tapioca contrast. :) | ||
| ========================================================================== */ | ||
|
|
||
| :root { | ||
|
fehmer marked this conversation as resolved.
Outdated
|
||
| --bg-color: #f4ebd9; /* creamy milk tea base */ | ||
| --main-color: #c39b7d; /* brown sugar syrup accent */ | ||
| --sub-color: #a68a73; /* taro milky tint */ | ||
| --sub-alt-color: #e9dec7; /* slightly darker cream for panels */ | ||
| --text-color: #3c2f2f; /* dark boba pearl text */ | ||
| --error-color: #d66868; /* strawberry popping boba */ | ||
| --error-bg-color: #f0d3d3; | ||
| --caret-color: #c39b7d; | ||
| } | ||
|
|
||
| /* removed the logo changes | ||
|
fehmer marked this conversation as resolved.
Outdated
|
||
|
|
||
| /* --- Navigation Links & Hover states --- */ | ||
| [data-nav-item] { | ||
| color: var(--main-color); | ||
| transition: color 0.15s ease; | ||
| } | ||
|
|
||
| [data-nav-item]:hover { | ||
| /* soft overlay highlight when hovering items */ | ||
| color: color-mix(in srgb, var(--main-color) 85%, white 15%); | ||
| } | ||
|
|
||
| /* Individual nav item overrides based on core colors */ | ||
| [data-nav-item="test"] { | ||
| color: var(--error-color); | ||
| &:hover { | ||
| color: color-mix(in srgb, var(--error-color) 75%, black 25%); | ||
| } | ||
| } | ||
|
|
||
| [data-nav-item="leaderboards"] { | ||
| color: var(--main-color); | ||
| &:hover { | ||
| color: color-mix(in srgb, var(--main-color) 75%, black 25%); | ||
| } | ||
| } | ||
|
|
||
| [data-nav-item="about"] { | ||
| color: var(--sub-color); | ||
| &:hover { | ||
| color: color-mix(in srgb, var(--sub-color) 75%, black 25%); | ||
| } | ||
| } | ||
|
|
||
| [data-nav-item="settings"] { | ||
| color: var(--caret-color); | ||
| &:hover { | ||
| color: color-mix(in srgb, var(--caret-color) 75%, black 25%); | ||
| } | ||
| } | ||
|
|
||
| /* Account buttons layout styling */ | ||
| [data-nav-item="alerts"], | ||
| [data-nav-item="account"], | ||
| [data-nav-item="login"] { | ||
| --themable-button-text: var(--main-color); | ||
| --themable-button-hover-text: color-mix( | ||
| in srgb, | ||
| var(--themable-button-text) 75%, | ||
| black 25% | ||
| ); | ||
| } | ||
|
|
||
| [data-nav-item="alerts"], | ||
| [data-ui-element="navAvatar"] { | ||
| & [data-ui-element="notificationBubble"] { | ||
| box-shadow: none; | ||
| background: var(--sub-alt-color); | ||
| } | ||
| } | ||
|
|
||
| /* Tiny spacing tweaks to prevent clipping issues */ | ||
|
Chouhan705 marked this conversation as resolved.
Outdated
|
||
| nav { | ||
|
fehmer marked this conversation as resolved.
Outdated
|
||
| padding-bottom: 0.2em; | ||
| } | ||
|
|
||
| header { | ||
| margin-bottom: -0.1em; | ||
| } | ||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.