-
Notifications
You must be signed in to change notification settings - Fork 84
Added gruvbox light theme #83
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
albertoparadisllop
wants to merge
1
commit into
refact0r:main
Choose a base branch
from
albertoparadisllop:gruvbox-light
base: main
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 all commits
Commits
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
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 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,78 @@ | ||
/** | ||
* @name system24 (gruvbox light) | ||
* @description A tui-style discord theme. Based on the gruvbox light color palette. | ||
* @author refact0r, Sophed, PixeledBrain | ||
* @version 1.0.0 | ||
* @invite nz87hXyvcy | ||
* @website https://github.com/refact0r/system24 | ||
* @authorId 508863359777505290 | ||
* @authorLink https://www.refact0r.dev | ||
*/ | ||
|
||
/* import theme modules */ | ||
@import url('https://refact0r.github.io/system24/src/main.css'); /* main theme css. DO NOT REMOVE */ | ||
@import url('https://refact0r.github.io/system24/src/unrounding.css'); /* gets rid of all rounded corners. remove if you want rounded corners. */ | ||
|
||
/* copied from gruvbox-material, replacing the background, text and accent colors for gruvbox-light */ | ||
:root { | ||
--font: 'DM Mono'; /* UI font name. it must be installed on your system. */ | ||
letter-spacing: -0.05ch; /* decreases letter spacing for better readability. */ | ||
font-weight: 400; /* UI font weight. */ | ||
--label-font-weight: 500; /* font weight for panel labels. */ | ||
--corner-text: 'gruvbox'; /* custom text to display in the corner. only works on windows. */ | ||
--pad: 16px; /* padding between panels. */ | ||
--txt-pad: 10px; /* padding inside panels to prevent labels from clipping */ | ||
--panel-roundness: 0px; /* corner roundness of panels. ONLY WORKS IF unrounding.css IS REMOVED (see above). */ | ||
|
||
/* background colors */ | ||
--bg-0: #fbf1c7; /* main background color. */ | ||
--bg-1: #ebdbb2; /* background color for secondary elements like code blocks, embeds, etc. */ | ||
--bg-2: #d5c4a1; /* color of neutral buttons. */ | ||
--bg-3: #bdae93; /* color of neutral buttons when hovered. */ | ||
|
||
/* state modifiers */ | ||
--hover: color-mix(in oklch, var(--txt-3), transparent 80%); /* color of hovered elements. */ | ||
--active: color-mix(in oklch, var(--txt-3), transparent 60%); /* color of elements when clicked. */ | ||
--selected: var(--active); /* color of selected elements. */ | ||
|
||
/* text colors */ | ||
--txt-dark: var(--bg-0); /* color of dark text on colored backgrounds. */ | ||
--txt-link: var(--aqua); /* color of links. */ | ||
--txt-0: #282828; /* color of bright/white text. */ | ||
--txt-1: #3c3836; /* main text color. */ | ||
--txt-2: #504945; /* color of secondary text like channel list. */ | ||
--txt-3: #665c54; /* color of muted text. */ | ||
|
||
/* accent colors */ | ||
--acc-0: var(--aqua); /* main accent color. */ | ||
--acc-1: var(--green); /* color of accent buttons when hovered. */ | ||
--acc-2: var(--blue); /* color of accent buttons when clicked. */ | ||
|
||
/* borders */ | ||
--border-width: 2px; /* panel border thickness. */ | ||
--border-color: var(--bg-2); /* panel border color. */ | ||
--border-hover-color: var(--acc-0); /* panel border color when hovered. */ | ||
--border-transition: 0.2s ease; /* panel border transition. */ | ||
|
||
/* status dot colors */ | ||
--online-dot: var(--green); /* color of online dot. */ | ||
--dnd-dot: var(--red); /* color of do not disturb dot. */ | ||
--idle-dot: var(--yellow); /* color of idle dot. */ | ||
--streaming-dot: var(--purple); /* color of streaming dot. */ | ||
|
||
/* mention/ping and message colors */ | ||
--mention-txt: var(--acc-0); /* color of mention text. */ | ||
--mention-bg: color-mix(in oklch, var(--acc-0), transparent 90%); /* background highlight of mention text. */ | ||
--mention-overlay: color-mix(in oklch, var(--acc-0), transparent 90%); /* overlay color of messages that mention you. */ | ||
--mention-hover-overlay: color-mix(in oklch, var(--acc-0), transparent 95%); /* overlay color of messages that mention you when hovered. */ | ||
--reply-overlay: var(--active); /* overlay color of message you are replying to. */ | ||
--reply-hover-overlay: var(--hover); /* overlay color of message you are replying to when hovered. */ | ||
|
||
/* color shades */ | ||
--red: #cc241d; | ||
--purple: #b16286; | ||
--yellow: #d79921; | ||
--aqua: #689d6a; | ||
--blue: #458588; | ||
--green: #98971a; | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the
corner-text
while playing around with the theme and forgot to change it back for the screenshot. I think its pretty minor, but I can make a new screenshot if necessary.