Merge pull request #284 from jwty/master

Matcha theme
This commit is contained in:
morpheusthewhite 2021-03-03 10:14:23 +01:00 committed by GitHub
commit 7aac3566be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 79 additions and 0 deletions

14
Matcha/README.md Normal file
View File

@ -0,0 +1,14 @@
# Matcha
Colour theme inspired by [Matcha GTK theme](https://github.com/vinceliuice/Matcha-gtk-theme)
Has a dark (base) and a light variant and narrow scroll bar tweak.
## Screenshots
![Matcha Dark themed Spotify screenshot](screenshot_dark.png)
![Matcha Light themed Spotify screenshot](screenshot_light.png)
## More
By [@jwty](https://github.com/jwty). Standalone download in available [this](https://github.com/jwty/Matcha-Spotify-Theme) repository.

37
Matcha/color.ini Normal file
View File

@ -0,0 +1,37 @@
[Base]
; Matcha-Dark scheme
main_fg = ffffff
secondary_fg = d3dae3
main_bg = 212b2e
sidebar_and_player_bg = 1b2224
cover_overlay_and_shadow = 1b2224
indicator_fg_and_button_bg = 2eb398
pressing_fg = 2980b8
slider_bg = 343e3e
sidebar_indicator_and_hover_button_bg = 2eb398
scrollbar_fg_and_selected_row_bg = 1b2224
pressing_button_fg = ffffff
pressing_button_bg = 2eb398
selected_button = 2eb398
miscellaneous_bg = 2eb398
miscellaneous_hover_bg = da4453
preserve_1 = 343e3e
[Light]
; Matcha-Light scheme
main_fg = 000000
secondary_fg = 303d41
main_bg = f7f7f7
sidebar_and_player_bg = e7e8eb
cover_overlay_and_shadow = e7e8eb
indicator_fg_and_button_bg = 2eb398
pressing_fg = 4285f4
slider_bg = d3dae3
sidebar_indicator_and_hover_button_bg = 2eb398
scrollbar_fg_and_selected_row_bg = e7e8eb
pressing_button_fg = 000000
pressing_button_bg = 2eb398
selected_button = 2eb398
miscellaneous_bg = 2eb398
miscellaneous_hover_bg = bf0303
preserve_1 = 343e3e

BIN
Matcha/screenshot_dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

BIN
Matcha/screenshot_light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

28
Matcha/user.css Normal file
View File

@ -0,0 +1,28 @@
/*Header bullshit*/
.Header__background-color, .GlueHeader__content-wrapper {
background-color: var(--modspotify_main_bg) !important;
}
/*Thinner scrollbar*/
::-webkit-scrollbar {
height: 6px !important;
width: 6px !important;
background-color: transparent;
}
/*Scrollbar background color*/
::-webkit-scrollbar-track {
background-color: var(--modspotify_sidebar_and_player_bg) !important;
}
/*Round corner scrollbar*/
::-webkit-scrollbar-thumb {
background-color: var(--modspotify_miscellaneous_bg) !important;
border-radius: 3px !important;
}
/*Hide top and bottom buttons of scrollbar */
/*who uses those, lol*/
::-webkit-scrollbar-button {
display: none !important;
}