Chrysoblog/src/app.css

94 lines
1.8 KiB
CSS
Raw Normal View History

2024-09-14 00:59:54 -07:00
@import url(./style/content.css);
@import url(./style/code.css);
2024-09-14 18:06:29 -07:00
@import '@fortawesome/fontawesome-free/css/all.min.css';
2024-09-11 07:54:39 -07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
@layer base {
:root {
--background: 0 0% 90%;
2024-09-11 07:54:39 -07:00
--foreground: 20 14.3% 4.1%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--muted: 60 4.8% 95.9%;
--muted-foreground: 25 5.3% 44.7%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--popover: 0 0% 100%;
--popover-foreground: 20 14.3% 4.1%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--card: 0 0% 100%;
--card-foreground: 20 14.3% 4.1%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--border: 20 5.9% 90%;
--input: 20 5.9% 90%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--primary: 24 9.8% 10%;
--primary-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--secondary: 60 4.8% 95.9%;
--secondary-foreground: 24 9.8% 10%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--accent: 60 4.8% 95.9%;
--accent-foreground: 24 9.8% 10%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--destructive: 0 72.2% 50.6%;
--destructive-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--ring: 20 14.3% 4.1%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--radius: 0.5rem;
}
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
.dark {
--background: 20 14.3% 4.1%;
--foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--muted: 12 6.5% 15.1%;
--muted-foreground: 24 5.4% 63.9%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--popover: 20 14.3% 4.1%;
--popover-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--card: 20 14.3% 4.1%;
--card-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--border: 12 6.5% 15.1%;
--input: 12 6.5% 15.1%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--primary: 60 9.1% 97.8%;
--primary-foreground: 24 9.8% 10%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--secondary: 12 6.5% 15.1%;
--secondary-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--accent: 12 6.5% 15.1%;
--accent-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 60 9.1% 97.8%;
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
--ring: 24 5.7% 82.9%;
}
}
2024-09-28 23:59:37 -07:00
2024-09-11 07:54:39 -07:00
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
2024-09-13 20:40:08 -07:00
}
html {
scroll-behavior: smooth;
/*overscroll-behavior: none;*/
2024-09-13 20:40:08 -07:00
}
2024-09-14 00:59:54 -07:00
.separator {
color: rgb(170,170,170);
border-color: rgb(170,170,170);
}
hr {
@apply separator;
}