Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felipemotarocha/93a06ff61f8262710647dcacf9549ae6 to your computer and use it in GitHub Desktop.
Save felipemotarocha/93a06ff61f8262710647dcacf9549ae6 to your computer and use it in GitHub Desktop.
FSW Store - shadcn theme
@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