diff --git a/files/.config/i3/config b/files/.config/i3/config index 2e70023..c172905 100644 --- a/files/.config/i3/config +++ b/files/.config/i3/config @@ -138,11 +138,11 @@ for_window [class="xterm"] border pixel 1 set $red "#e06c75" set $termbg "#1C1B1D" set $border "#D8D8D8" -set $accent "#98C379" +set $acc "#98C379" # Class Border Backgr. Text Indic. Child_border -client.focused $accent $termbg #ffffff $border $border -client.focused_inactive $accent $termbg #ffffff $termbg $termbg +client.focused $acc $termbg #ffffff $border $border +client.focused_inactive $acc $termbg #ffffff $termbg $termbg client.unfocused $termbg $termbg #ffffff $termbg $termbg client.urgent $red $red $border $red $red client.background $border diff --git a/themes/SimplyDark.theme.css b/themes/SimplyDark.theme.css new file mode 100644 index 0000000..f3ed6c3 --- /dev/null +++ b/themes/SimplyDark.theme.css @@ -0,0 +1,43 @@ +/** + * @name SimplyDark + * @author Gibbu#1211 + * @version 2.0.0 + * @description A sharp and simple theme for Discord + * @source https://github.com/DiscordStyles/SimplyDark + * @website https://gibbu.me/ +*/ + +@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900'); +@import url("https://discordstyles.github.io/SimplyDark/base.css"); + +/* Black Box user tags */ +@import url('https://monstrousdev.github.io/themes/addons/user-tags.css'); + +/* Old Windows titlebar - remove this @import if you wish to use default titlebar */ +@import url("https://gibbu.github.io/BetterDiscord-Themes/addons/windows-titlebar.css"); + +:root { + + --SD-bgR: 10; /* RED value | 0 - 255 | DEFAULT: 10 */ + --SD-bgG: 10; /* GREEN value | 0 - 255 | DEFAULT: 10 */ + --SD-bgB: 10; /* BLUE value | 0 - 255 | DEFAULT: 10 */ + + --SD-emojipickerheight: 224px; /* Height of the emojipicker. Changing this may cause issues in some places. | DEFAULT: 224px */ + --SD-roundness: 0px; /* Roundness for avatars, servers ect... | DEFAULT: 0px | MAX: 30px */ + --SD-avatar-status-width: 2px; /* Width of status border around avatars (must end in px) | DEFAULT: 2px */ + + /* + Accent variable + Use this website: https://htmlcolorcodes.com/color-picker/ + to get your desired RGB numbers. Then simply put each number in their respective area. + R,G,B + */ + --SD-accent: 33,150,243; + + /* + To use a custom font. Visit https://fonts.google.com and select one to your liking. + Now just follow this tutorial: https://imgur.com/a/CNbw7xC + */ + --SD-font: 'Roboto'; + +}