spicetify-themes/text
2024-11-07 21:02:36 +01:00
..
screenshots feat(text): add RosePineDawn color scheme (#1095) 2024-07-12 01:07:51 +12:00
color.ini feat(text): add RosePineDawn color scheme (#1095) 2024-07-12 01:07:51 +12:00
README.md feat(text): add RosePineDawn color scheme (#1095) 2024-07-12 01:07:51 +12:00
user.css fix(text): support global nav, make minor fixes (#1122) 2024-11-07 21:02:36 +01:00

text

Screenshots

Display Images

with images

withimg

without images

withoutimg

Spotify

Spotify

Spicetify

Spicetify

CatppuccinMocha

CatppuccinMocha

CatppuccinMacchiato

CatppuccinMacchiato

CatppuccinLatte

CatppuccinLatte

Dracula

Dracula

Gruvbox

Gruvbox

Kanagawa

Kanagawa

Nord

Nord

Rigel

CatppuccinMaRigelcchiato

RosePine

RosePine

RosePineMoon

RosePineMoon

RosePineDawn

RosePineDawn

Solarized

Solarized

TokyoNight

TokyoNight

TokyoNightStorm

TokyoNightStorm

ForestGreen

ForestGreen

More

Description

a spicetify theme that mimics the look of spotify-tui

Credits

created by darkthemer

Notes

  • IMPORTANT: Add the following to your config-xpui.ini file. Details as to why are explained here. Run spicetify apply after adding these lines.
[Patch]
xpui.js_find_8008 = ,(\w+=)56,
xpui.js_repl_8008 = ,${1}32,
/* user settings */
:root {
    --font-family: "DM Mono", monospace;
    /*
    --font-family: 'Anonymous Pro', monospace;
    --font-family: 'Courier Prime', monospace;
    --font-family: 'Cousine', monospace;
    --font-family: 'Cutive Mono', monospace;
    --font-family: 'DM Mono', monospace;
    --font-family: 'Fira Mono', monospace;
    --font-family: 'IBM Plex Mono', monospace;
    --font-family: 'Inconsolata', monospace;
    --font-family: 'Nanum Gothic Coding', monospace;
    --font-family: 'PT Mono', monospace;
    --font-family: 'Roboto Mono', monospace;
    --font-family: 'Share Tech Mono', monospace;
    --font-family: 'Source Code Pro', monospace;
    --font-family: 'Space Mono', monospace;
    --font-family: 'Ubuntu Mono', monospace;
    --font-family: 'VT323', monospace;
    */
    --font-size: 14px;
    --font-weight: 400; /* 200 : 900 */
    --line-height: 1.2;

    --font-size-lyrics: 14px; /* 1.5em (default) */

    --font-family-header: "asciid";
    --font-size-multiplier-header: 4;

    --display-card-image: block; /* none | block */
    --display-coverart-image: none; /* none | block */
    --display-header-image: none; /* none | block */
    --display-library-image: block; /* none | block */
    --display-tracklist-image: none; /* none | block */
    --display-spicetify-banner-ascii: block; /* none | block */
    --display-music-banner-ascii: none; /* none | block */

    --border-radius: 0px;
    --border-width: 1px;
    --border-style: solid; /* dotted | dashed | solid | double | groove | ridge | inset | outset */
}
  • SUGGESTION: 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 + Add CSS feature)
/* transparent window controls background */
.spotify__container--is-desktop:not(.fullscreen) 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 */
    width: 135px;
    /* depending on what global status bar
       style is enabled height need to be
       changed accordingly. */
    height: 64px;
}

winctrl