spicetify-themes/text
2023-11-10 12:48:41 +13:00
..
screenshots feat(Text): add text theme (#970) 2023-07-13 19:45:18 +12:00
color.ini feat(Text): add text theme (#970) 2023-07-13 19:45:18 +12:00
README.md docs(text/readme): patch for library navbar (#1007) 2023-11-07 14:15:52 +00:00
user.css fix(text): lyrics text size (#1005) 2023-11-10 12:48:41 +13:00

text

Screenshots

Display Images

with images
--display-card-image: block;
--display-coverart-image: block;
--display-header-image: block;
--display-library-image: block;
--display-tracklist-image: block;

withimg

without images
--display-card-image: none;
--display-coverart-image: none;
--display-header-image: none;
--display-library-image: none;
--display-tracklist-image: none;

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

Solarized

Solarized

TokyoNight

TokyoNight

TokyoNightStorm

TokyoNightStorm

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_0880 = COLLAPSED\?64:32
xpui.js_repl_0880 = COLLAPSED?32:32
xpui.js_find_8008 = ,(\w+=)56,
xpui.js_repl_8008 = ,${1}32,
/* user settings */
:root {
    --font-family: "DM Mono", monospace !important;
    /*
    --font-family: 'Anonymous Pro', monospace !important;
    --font-family: 'Courier Prime', monospace !important;
    --font-family: 'Cousine', monospace !important;
    --font-family: 'Cutive Mono', monospace !important;
    --font-family: 'DM Mono', monospace !important;
    --font-family: 'Fira Mono', monospace !important;
    --font-family: 'IBM Plex Mono', monospace !important;
    --font-family: 'Inconsolata', monospac !important;
    --font-family: 'Nanum Gothic Coding', monospace !important;
    --font-family: 'PT Mono', monospace !important;
    --font-family: 'Roboto Mono', monospace !important;
    --font-family: 'Share Tech Mono', monospace !important;
    --font-family: 'Source Code Pro', monospace !important;
    --font-family: 'Space Mono', monospace !important;
    --font-family: 'Ubuntu Mono', monospace !important;
    --font-family: 'VT323', monospace !important;
    */
    --font-size: 14px !important;
    --font-size-lyrics: 14px; /* 1.5em (default) */
    --font-weight: 400 !important; /* 200 : 900 */
    --line-height: 1.2 !important;

    --display-card-image: block !important; /* none | block */
    --display-coverart-image: none !important; /* none | block */
    --display-header-image: none !important; /* none | block */
    --display-library-image: block !important; /* none | block */
    --display-tracklist-image: none !important; /* none | block */

    --border-radius: 0px !important;
    --border-width: 1px !important;
    --border-style: solid !important; /* 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 */
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;
}

winctrl