this repo has no description
lustre frontent oat-ui gleam
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’„ add inline theme

+25 -1
+24
src/client.css
··· 23 23 --input: #d4d4d8; 24 24 --ring: #574747; 25 25 } 26 + 27 + @theme inline { 28 + --color-background: var(--background); 29 + --color-foreground: var(--foreground); 30 + --color-card: var(--card); 31 + --color-card-foreground: var(--card-foreground); 32 + --color-primary: var(--primary); 33 + --color-primary-foreground: var(--primary-foreground); 34 + --color-secondary: var(--secondary); 35 + --color-secondary-foreground: var(--secondary-foreground); 36 + --color-muted: var(--muted); 37 + --color-muted-foreground: var(--muted-foreground); 38 + --color-faint: var(--faint); 39 + --color-accent: var(--accent); 40 + --color-danger: var(--danger); 41 + --color-danger-foreground: var(--danger-foreground); 42 + --color-success: var(--success); 43 + --color-success-foreground: var(--success-foreground); 44 + --color-warning: var(--warning); 45 + --color-warning-foreground: var(--warning-foreground); 46 + --color-border: var(--border); 47 + --color-input: var(--input); 48 + --color-ring: var(--ring); 49 + }
+1 -1
src/client/page/navbar.gleam
··· 10 10 html.nav([attr.data("topnav", ""), class("p-4 h-full border-b")], [ 11 11 // Toggle button 12 12 icon.menu([ 13 - class("p-1 text-gray-500 rounded-sm border border-gray-500 size-8"), 13 + class("p-1 rounded-sm border size-8"), 14 14 attr.data("sidebar-toggle", ""), 15 15 ]), 16 16