97 lines
2.4 KiB
CSS
97 lines
2.4 KiB
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Space+Grotesk:wght@300..700&display=swap');
|
||
|
|
|
||
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
:root {
|
||
|
|
/* Primary Colors */
|
||
|
|
--color-primary: #ED1F79;
|
||
|
|
--color-rose-500: #ED1F79;
|
||
|
|
|
||
|
|
/* Secondary Colors */
|
||
|
|
--color-secondary: #7776BC;
|
||
|
|
--color-deluge-500: #7776BC;
|
||
|
|
|
||
|
|
/* Accent Colors */
|
||
|
|
--color-accent-blue: #85C7F2;
|
||
|
|
--color-malibu-500: #85C7F2;
|
||
|
|
|
||
|
|
/* Gray Scale */
|
||
|
|
--color-gray-100: #9AA2B3;
|
||
|
|
--color-gray-200: #7A8093;
|
||
|
|
--color-gray-300: #5D637A;
|
||
|
|
--color-gray-400: #444760;
|
||
|
|
--color-gray-500: #2B2C41;
|
||
|
|
--color-gray-600: #24263C;
|
||
|
|
--color-gray-700: #1D1E36;
|
||
|
|
--color-gray-800: #131427;
|
||
|
|
--color-gray-900: #0A0B1C;
|
||
|
|
|
||
|
|
/* Semantic Colors */
|
||
|
|
--color-success: #21FA90;
|
||
|
|
--color-warning: #FF6B35;
|
||
|
|
--color-danger: #E71D36;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
background-color: var(--color-gray-600);
|
||
|
|
color: var(--color-gray-100);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Custom Font Size Classes */
|
||
|
|
.font-size-12 { font-size: 12px; }
|
||
|
|
.font-size-14 { font-size: 14px; }
|
||
|
|
.font-size-16 { font-size: 16px; }
|
||
|
|
.font-size-18 { font-size: 18px; }
|
||
|
|
.font-size-20 { font-size: 20px; }
|
||
|
|
.font-size-24 { font-size: 24px; }
|
||
|
|
.font-size-32 { font-size: 32px; }
|
||
|
|
.font-size-48 { font-size: 48px; }
|
||
|
|
|
||
|
|
/* Font Weight Classes */
|
||
|
|
.font-weight-100 { font-weight: 100; }
|
||
|
|
.font-weight-200 { font-weight: 200; }
|
||
|
|
.font-weight-300 { font-weight: 300; }
|
||
|
|
.font-weight-400 { font-weight: 400; }
|
||
|
|
.font-weight-500 { font-weight: 500; }
|
||
|
|
.font-weight-600 { font-weight: 600; }
|
||
|
|
.font-weight-700 { font-weight: 700; }
|
||
|
|
.font-weight-800 { font-weight: 800; }
|
||
|
|
.font-weight-900 { font-weight: 900; }
|
||
|
|
|
||
|
|
/* Button Styles */
|
||
|
|
.button-primary-solid {
|
||
|
|
background-color: var(--color-primary);
|
||
|
|
color: white;
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-radius: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-primary-solid:hover {
|
||
|
|
background-color: var(--color-secondary);
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-primary-outline {
|
||
|
|
background-color: transparent;
|
||
|
|
color: var(--color-primary);
|
||
|
|
border: 2px solid var(--color-primary);
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-radius: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-accent-solid {
|
||
|
|
background-color: var(--color-accent-blue);
|
||
|
|
color: var(--color-gray-900);
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-radius: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-accent-outline {
|
||
|
|
background-color: transparent;
|
||
|
|
color: var(--color-accent-blue);
|
||
|
|
border: 2px solid var(--color-accent-blue);
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-radius: 0.25rem;
|
||
|
|
}
|