2023-04-16 02:56:38 +02:00
# Matte
## Screenshots
2023-06-02 03:49:21 +02:00
### Matte (Old UI)
![Matte Queue Page ](screenshots/queue.png )
![Matte Search Page ](screenshots/search.png )
![Matte Customized Config ](screenshots/customized.png )
### Matte (YLX UI)
![Matte ](screenshots/ylx-matte.png )
### Periwinkle
![Periwinkle ](screenshots/ylx-periwinkle.png )
### Periwinkle-Dark
![Periwkinle Dark ](screenshots/ylx-periwinkle-dark.png )
### Porcelain
![Porcelain ](screenshots/ylx-porcelain.png )
2023-04-16 02:56:38 +02:00
2023-06-02 03:49:21 +02:00
### Gray-Dark1
2023-04-16 02:56:38 +02:00
2023-06-02 03:49:21 +02:00
![Gray Dark 1 ](screenshots/ylx-gray-dark1.png )
### Gray-Dark2
![Gray Dark 2 ](screenshots/ylx-gray-dark2.png )
### Gray-Dark3
![Gray Dark 3 ](screenshots/ylx-gray-dark3.png )
### Gray
![Gray ](screenshots/ylx-gray.png )
### Gray-Light
![Gray Light ](screenshots/ylx-gray-light.png )
2023-04-16 02:56:38 +02:00
2023-06-05 19:34:46 +02:00
## More
### Description
a Spicetify theme which features a distinct top bar, quick-to-edit CSS variables, and color schemes from Windows visual styles by KDr3w
### Credits
- Based on [Matte by KDr3w ](https://www.deviantart.com/kdr3w/art/Matte-758699852 ) and their [other themes ](https://www.deviantart.com/kdr3w/gallery/68078309/windows-10-themes )
- Created by [darkthemer ](https://github.com/darkthemer )
2023-04-16 02:56:38 +02:00
### Notes
2023-06-02 03:49:21 +02:00
- Supports both Old UI and Your Library X UI
- Check the very top of `user.css` for quick configs
2023-06-05 19:34:46 +02:00
- If you use the Marketplace, go to `Marketplace > Snippets > + Add CSS` and then paste the quick configs found in `user.css` . Edit these as you wish.
![Window Controls ](screenshots/quickcfg.png )
- For Windows users, here's how to make the window controls' background match with the topbar background
- Put this snippet into your `user.css` (or through the Marketplace's custom CSS feature)
2023-06-02 03:49:21 +02:00
2023-04-16 02:56:38 +02:00
```css
2023-06-02 03:49:21 +02:00
/* transparent window controls background */
body::after {
content: "";
position: absolute;
right: 0;
z-index: 999;
backdrop-filter: brightness(2.12);
/* page zoom [ctrl][+] or [ctrl][-]
edit width and height accordingly
69% = 194px 45px
76% = 177px 40.5px
83% = 162px 37.5px
91% = 148px 34px
100% = 135px 31px (default)
110% = 123px 28.5px
*/
width: 135px;
height: 31px;
2023-04-16 02:56:38 +02:00
}
```
2023-06-02 03:49:21 +02:00
![Window Controls ](screenshots/winctrl.png )