15 lines
289 B
CSS
15 lines
289 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
/* VibeRoom 4-Color System */
|
|
--color-brand-bg: #eaf6ff;
|
|
--color-brand-primary: #009ffd;
|
|
--color-brand-secondary: #2a2a72;
|
|
--color-brand-dark: #232528;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-brand-bg);
|
|
color: var(--color-brand-secondary);
|
|
}
|