45 lines
768 B
CSS
45 lines
768 B
CSS
@import 'tailwindcss';
|
|
@import 'tw-animate-css';
|
|
|
|
@theme {
|
|
--color-panel: #2a2a2a;
|
|
--color-canvas: #1e1e1e;
|
|
--color-border: #3a3a3a;
|
|
--color-hover: #353535;
|
|
--color-accent: #3b82f6;
|
|
--color-surface: #e0e0e0;
|
|
--color-muted: #888888;
|
|
--color-input: #1e1e1e;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
Inter,
|
|
system-ui,
|
|
-apple-system,
|
|
sans-serif;
|
|
font-size: 13px;
|
|
color: var(--color-surface);
|
|
background: var(--color-canvas);
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
input[type='number'] {
|
|
appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
input[type='number']::-webkit-inner-spin-button,
|
|
input[type='number']::-webkit-outer-spin-button {
|
|
display: none;
|
|
}
|