Files
Desktop/ts/axo/_tailwind-theme/global.css
T
2026-07-13 11:45:26 -07:00

29 lines
493 B
CSS

/**
* Copyright 2026 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
@layer base {
:root {
@apply h-screen scheme-light-dark select-none;
}
body {
@apply h-screen w-screen bg-surface-primary font-sans type-body-large text-primary;
}
a[href] {
@apply text-accent underline focus:outline-none keyboard-mode:focus:axo-focus-ring;
}
}
@layer components {
.light-theme {
@apply scheme-light;
}
.dark-theme {
@apply scheme-dark;
}
}