forked from
juliet.paris/streamplace-spa
minimal streamplace frontend
1@import "tailwindcss";
2
3@theme {
4 --font-sans: "DM Sans", sans-serif;
5
6 --color-sp-bg: #131316;
7 --color-sp-surface: #1c1c20;
8 --color-sp-border: #222228;
9 --color-sp-text: #f0f0f4;
10 --color-sp-dim: #8a8a96;
11 --color-sp-accent: #c4b5fd;
12 --color-sp-accent-dim: #c4b5fd15;
13 --color-sp-red: #f87171;
14 --color-sp-red-dim: #f8717118;
15 --color-sp-hover: #242428;
16}
17
18html {
19 scrollbar-gutter: stable both-edges;
20}
21
22* {
23 scrollbar-width: thin;
24 scrollbar-color: var(--color-sp-border) transparent;
25}
26
27@keyframes pulse-live {
28 0%,
29 100% {
30 opacity: 1;
31 }
32 50% {
33 opacity: 0.6;
34 }
35}