Created
October 16, 2023 18:15
-
-
Save felipemotarocha/93a06ff61f8262710647dcacf9549ae6 to your computer and use it in GitHub Desktop.
FSW Store - shadcn theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
@layer base { | |
:root { | |
--background: 0 0% 4%; | |
--foreground: 0 0% 100%; | |
--card: 0 0% 4%; | |
--card-foreground: 0 0% 100%; | |
--popover: 0 0% 4%; | |
--popover-foreground: 0 0% 100%; | |
--primary: 252 59% 48%; | |
--primary-foreground: 0 0% 100%; | |
--secondary: 0 0% 9%; | |
--secondary-foreground: 0 0% 100%; | |
--muted: 0 0% 9%; | |
--muted-foreground: 215 20.2% 65.1%; | |
--accent: 0 0% 9%; | |
--accent-foreground: 0 0% 100%; | |
--destructive: 0 62.8% 30.6%; | |
--destructive-foreground: 0 0% 100%; | |
--border: 0 0% 9%; | |
--input: 0 0% 9%; | |
--ring: 212.7 26.8% 83.9%; | |
--radius: 0.5rem; | |
} | |
} | |
@layer base { | |
* { | |
@apply border-border; | |
} | |
body { | |
@apply h-full bg-background text-foreground; | |
} | |
html { | |
@apply h-full; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment