Skip to content

Commit 7e1c277

Browse files
committed
Change colors
1 parent 7629904 commit 7e1c277

2 files changed

Lines changed: 16 additions & 10 deletions

File tree

docs/stylesheets/extra.css

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@
1010
/* Typography */
1111
--heading-font-weight: 600;
1212

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 */
1723
}
1824

1925
/* Dark mode adjustments */
@@ -229,7 +235,7 @@
229235
.hero-section {
230236
text-align: center;
231237
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%);
233239
border-radius: 1rem;
234240
margin-bottom: 3rem;
235241
}
@@ -238,7 +244,7 @@
238244
font-size: 3.5rem;
239245
font-weight: 700;
240246
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%);
242248
-webkit-background-clip: text;
243249
-webkit-text-fill-color: transparent;
244250
background-clip: text;

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ theme:
5353
# Palette toggle for light mode
5454
- media: "(prefers-color-scheme: light)"
5555
scheme: default
56-
primary: teal
57-
accent: cyan
56+
primary: "#274754"
57+
accent: "#2a9d90"
5858
toggle:
5959
icon: material/brightness-7
6060
name: Switch to dark mode
6161

6262
# Palette toggle for dark mode
6363
- media: "(prefers-color-scheme: dark)"
6464
scheme: slate
65-
primary: teal
66-
accent: cyan
65+
primary: "#274754"
66+
accent: "#2a9d90"
6767
toggle:
6868
icon: material/brightness-4
6969
name: Switch to system preference

0 commit comments

Comments
 (0)