Files
core2026/app/game-frontend/src/assets/main.css
T

54 lines
923 B
CSS

@import 'tailwindcss';
@import './styles/tokens.css';
@import './styles/legacy-controls.css';
@import './styles/game-shell.css';
@import './styles/ref-shell.css';
@theme {
--color-sammo-ink: #000;
--color-sammo-parchment: #fff;
--color-sammo-gold: #f39c12;
}
html {
color-scheme: dark;
}
body {
min-width: 320px;
margin: 0;
background: #000;
color: #fff;
font-family: var(--sammo-font-sans);
font-size: 14px;
line-height: 1.3;
}
body:has(.battle-page),
body:has(.chief-page),
body:has(.global-page) {
line-height: 1.5;
}
button,
input,
select,
textarea {
font: inherit;
}
.legacy-bg0 {
background-color: #302016;
background-image: var(--sammo-texture-walnut);
}
.legacy-bg1 {
background-color: #14241b;
background-image: var(--sammo-texture-green);
}
.legacy-bg2 {
background-color: #172a52;
background-image: var(--sammo-texture-blue);
}