|
10 | 10 | /* Typography */ |
11 | 11 | --heading-font-weight: 600; |
12 | 12 |
|
13 | | - /* Colors - enhance teal theme */ |
14 | | - --flixopt-teal: #009688; |
15 | | - --flixopt-teal-light: #4DB6AC; |
16 | | - --flixopt-teal-dark: #00796B; |
| 13 | + /* Colors - custom brand palette */ |
| 14 | + --flixopt-primary: #274754; /* Primary dark blue-gray */ |
| 15 | + --flixopt-accent: #2a9d90; /* Main accent teal-green */ |
| 16 | + --flixopt-gold: #e8c468; /* Golden yellow */ |
| 17 | + --flixopt-orange: #f4a462; /* Orange */ |
| 18 | + |
| 19 | + /* Derived colors for gradients */ |
| 20 | + --flixopt-teal: #2a9d90; |
| 21 | + --flixopt-teal-light: #3dbaa8; /* Lighter teal for gradients */ |
| 22 | + --flixopt-teal-dark: #1f7a70; /* Darker teal for gradients */ |
17 | 23 | } |
18 | 24 |
|
19 | 25 | /* Dark mode adjustments */ |
|
229 | 235 | .hero-section { |
230 | 236 | text-align: center; |
231 | 237 | padding: 4rem 2rem 3rem 2rem; |
232 | | - background: linear-gradient(135deg, rgba(0, 150, 136, 0.1) 0%, rgba(0, 121, 107, 0.1) 100%); |
| 238 | + background: linear-gradient(135deg, rgba(42, 157, 144, 0.1) 0%, rgba(31, 122, 112, 0.1) 100%); |
233 | 239 | border-radius: 1rem; |
234 | 240 | margin-bottom: 3rem; |
235 | 241 | } |
|
238 | 244 | font-size: 3.5rem; |
239 | 245 | font-weight: 700; |
240 | 246 | margin-bottom: 1rem; |
241 | | - background: linear-gradient(135deg, #009688 0%, #00796B 100%); |
| 247 | + background: linear-gradient(135deg, var(--flixopt-accent) 0%, var(--flixopt-teal-dark) 100%); |
242 | 248 | -webkit-background-clip: text; |
243 | 249 | -webkit-text-fill-color: transparent; |
244 | 250 | background-clip: text; |
|
0 commit comments