mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-03-28 17:43:05 +01:00
40 lines
886 B
CSS
40 lines
886 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 10%;
|
|
--foreground: 0 0% 88%;
|
|
--card: 0 0% 14%;
|
|
--card-foreground: 0 0% 88%;
|
|
--popover: 0 0% 14%;
|
|
--popover-foreground: 0 0% 88%;
|
|
--primary: 122 39% 49%;
|
|
--primary-foreground: 0 0% 100%;
|
|
--secondary: 0 0% 20%;
|
|
--secondary-foreground: 0 0% 88%;
|
|
--muted: 0 0% 20%;
|
|
--muted-foreground: 0 0% 53%;
|
|
--accent: 0 0% 20%;
|
|
--accent-foreground: 0 0% 88%;
|
|
--destructive: 0 62% 50%;
|
|
--destructive-foreground: 0 0% 100%;
|
|
--border: 0 0% 20%;
|
|
--input: 0 0% 20%;
|
|
--ring: 122 39% 49%;
|
|
--radius: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
}
|