advent of atproto
1@import "tailwindcss";
2
3@plugin "@tailwindcss/typography";
4
5@plugin "daisyui" {
6 themes: light --default, dark --prefersdark, forest;
7}
8
9@layer base {
10 body {
11 font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
12 }
13}
14
15.advent-header {
16 /*background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);*/
17 box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
18}
19
20.advent-title {
21 /* Festive Christmas gradient: deep red → bright red → gold → green → deep green */
22 background: linear-gradient(90deg, #b91c1c 0%, #ef4444 22%, #f59e0b 50%, #22c55e 78%, #065f46 100%);
23 -webkit-background-clip: text;
24 background-clip: text;
25 -webkit-text-fill-color: transparent;
26 font-weight: 800;
27 letter-spacing: -0.025em;
28}