This commit is contained in:
eric
2026-03-15 22:39:30 -05:00
parent aff82b4fc2
commit 39803739bb
6 changed files with 185 additions and 163 deletions

View File

@@ -1,14 +1,16 @@
@import "tailwindcss";
:root {
--background: #fafafa;
--foreground: #171717;
--background: #faf8f5;
--foreground: #1c1917;
--accent: #b45309;
--accent-hover: #92400e;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
--background: #0c0a09;
--foreground: #fafaf9;
}
}
@@ -18,12 +20,18 @@ body {
}
.hero-gradient-text {
background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.form-input:focus {
outline: none;
border-color: #b45309;
box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.2);
}
.items-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
@@ -73,12 +81,6 @@ body {
font-size: 0.875rem;
}
.form-input:focus {
outline: none;
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}
.dark .form-input {
border-color: #374151;
background: #1f2937;