-
Notifications
You must be signed in to change notification settings - Fork 0
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
tay
committed
Jul 6, 2024
1 parent
72d71b9
commit 4e1194e
Showing
575 changed files
with
56,325 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,87 @@ | ||
/** | ||
* @name Material Discord | ||
* @version 3.0.5 | ||
* @description A theme based on Google's Material Design | ||
* @author CapnKitten | ||
* | ||
* @website https://tay.is-a.dev/ | ||
* @source https://github.com/tayrp/taycord | ||
* @donate https://paypal.me/mystixmew | ||
* @invite 2UH5dYZck3 | ||
*/ | ||
|
||
@import url(https://tay.is-a.dev/other/themes/Material-Discord-source.css); | ||
|
||
/* Material You addon */ | ||
@import url(https://tay.is-a.dev/other/themes/Material-Discord-material-you-source.css); | ||
|
||
/* MATERIAL YOU DARK THEME SETTINGS */ | ||
.theme-dark { | ||
--saturation-modifier: 0.31; | ||
--lightness-modifier: 0.225; | ||
--text-lightness-modifier: 1.0; | ||
} | ||
|
||
/* MATERIAL YOU LIGHT THEME SETTINGS */ | ||
.theme-light { | ||
--saturation-modifier: 0.74; | ||
--lightness-modifier: 2.125; | ||
--text-lightness-modifier: 1.0; | ||
} | ||
|
||
:root { | ||
/* ACCENT HSL AND TEXT COLOR SETTINGS */ | ||
--accent-hue: 227; | ||
--accent-saturation: 71%; | ||
--accent-lightness: 61%; | ||
--accent-text-color: hsl(0,0%,100%); /* DOES NOTHING WITH MATERIAL YOU ENABLED */ | ||
--accent-button-action: hsl(0,0%,100%); | ||
|
||
/* ALERT HSL AND TEXT COLOR SETTINGS */ | ||
--alert-hue: 0; | ||
--alert-saturation: 85%; | ||
--alert-lightness: 61%; | ||
--alert-text-color: hsl(0,0%,100%); /* DOES NOTHING WITH MATERIAL YOU ENABLED */ | ||
|
||
/* WARNING HSL AND TEXT COLOR SETTINGS*/ | ||
--warning-hue: 40; | ||
--warning-saturation: 86.4%; | ||
--warning-lightness: 56.9%; | ||
--warning-text-color: hsl(0,0%,100%); /* DOES NOTHING WITH MATERIAL YOU ENABLED */ | ||
|
||
/* MESSAGE SETTINGS */ | ||
--message-radius: 18px; | ||
--message-padding-top: 8px; | ||
--message-padding-side: 12px; | ||
|
||
/* MESSAGE MEDIA SETTINGS */ | ||
--media-radius: 10px; | ||
|
||
/* CARD SETTINGS */ | ||
--card-radius: 8px; | ||
--card-radius-big: 18px; | ||
|
||
/* BUTTON SETTINGS */ | ||
--button-height: 36px; | ||
--button-padding: 0 24px; | ||
--button-action-color: hsl(0,0%,100%); | ||
|
||
/* INPUT SETTINGS */ | ||
--input-height: 36px; | ||
--input-padding: 0 12px; | ||
|
||
/* POPOUT AND MODAL SETTINGS */ | ||
--popout-radius: 8px; | ||
--popout-radius-big: 18px; | ||
|
||
/* TOOLTIP SETTINGS */ | ||
--tooltip-color: hsl(0,0%,38%,0.9); | ||
--tooltip-text-color: hsl(0,0%,87%); | ||
--tooltip-font-size: 12px; | ||
--tooltip-padding: 8px; | ||
--tooltip-radius: 8px; | ||
|
||
/* SCROLLBAR SETTINGS */ | ||
--scrollbar-width: 10px; | ||
--scrollbar-thin-width: 6px; | ||
} |
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 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,4 @@ | ||
@use 'src/app/materialYou'; | ||
//@use 'src/beta'; | ||
|
||
@import 'src/selectorPlaceholders'; |
Oops, something went wrong.