Skip to content

Commit d72a07e

Browse files
committed
feat(standard-seasons): enable secret mode (60min) and improve autumn theme colors
- Enable secret mode with 60 minute offset (1 hour) by default in all season demo data - Improve autumn theme color contrast for better text visibility - Lower background from #fcf9f2 → #faf5f0 for more contrast - Darken primary from #a93529 → #8b2e1f for better visibility - Adjust secondary, accent, and text colors for better readability - Update card background and border colors - Fixes issue where autumn theme text was too light and hard to read in month/week views - Ensures seasonal themes have consistent design quality
1 parent 71dc511 commit d72a07e

6 files changed

Lines changed: 25 additions & 25 deletions

File tree

apps/web/src/lib/themes/standard-seasons/autumn/config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export const seasonAutumnTheme: ThemeConfig = {
1717
layout: "single",
1818
colorScheme: "light",
1919
customColors: {
20-
primary: "#a93529",
21-
secondary: "#e6b422",
22-
background: "#fcf9f2",
23-
text: "#4a3b32",
24-
accent: "#d4762c",
20+
primary: "#8b2e1f",
21+
secondary: "#d89f2e",
22+
background: "#faf5f0",
23+
text: "#3a2d25",
24+
accent: "#c46b1f",
2525
},
2626
},
2727
};

apps/web/src/lib/themes/standard-seasons/autumn/demo-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export function getDemoData(): DemoDataSet {
7070
itinerary_secrets: {
7171
itinerary_id: 'demo',
7272
enabled: true,
73-
offset_minutes: 30,
73+
offset_minutes: 60,
7474
created_at: now,
7575
updated_at: now,
7676
},

apps/web/src/lib/themes/standard-seasons/shared/styles/variables.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
:root {
2-
--standard-autumn-bg: #fcf9f2;
3-
--standard-autumn-primary: #a93529;
4-
--standard-autumn-primary-light: #c75b4e;
5-
--standard-autumn-secondary: #e6b422;
6-
--standard-autumn-accent: #d4762c;
7-
--standard-autumn-text: #4a3b32;
8-
--standard-autumn-text-light: #786b60;
9-
--standard-autumn-card-bg: #ffffff;
2+
--standard-autumn-bg: #faf5f0;
3+
--standard-autumn-primary: #8b2e1f;
4+
--standard-autumn-primary-light: #b8562f;
5+
--standard-autumn-secondary: #d89f2e;
6+
--standard-autumn-accent: #c46b1f;
7+
--standard-autumn-text: #3a2d25;
8+
--standard-autumn-text-light: #6b5c52;
9+
--standard-autumn-card-bg: #fffbf7;
1010
--standard-autumn-header-bg: transparent;
11-
--standard-autumn-border: #e8e0d5;
12-
--standard-autumn-line-color: #dccbba;
13-
--standard-autumn-dot-bg: #a93529;
14-
--standard-autumn-shadow: 0 12px 36px -8px rgba(74, 59, 50, 0.12);
15-
--standard-autumn-shadow-sm: 0 4px 12px -2px rgba(74, 59, 50, 0.08);
11+
--standard-autumn-border: #dcc7b5;
12+
--standard-autumn-line-color: #d1b599;
13+
--standard-autumn-dot-bg: #8b2e1f;
14+
--standard-autumn-shadow: 0 12px 36px -8px rgba(58, 45, 37, 0.12);
15+
--standard-autumn-shadow-sm: 0 4px 12px -2px rgba(58, 45, 37, 0.08);
1616

1717
/* Spring Theme */
1818
--standard-spring-bg: #fdf2f8;

apps/web/src/lib/themes/standard-seasons/spring/demo-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export function getDemoData(): DemoDataSet {
9292
],
9393
itinerary_secrets: {
9494
itinerary_id: 'demo',
95-
enabled: false,
96-
offset_minutes: 30,
95+
enabled: true,
96+
offset_minutes: 60,
9797
created_at: now,
9898
updated_at: now,
9999
},

apps/web/src/lib/themes/standard-seasons/summer/demo-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ export function getDemoData(): DemoDataSet {
7070
],
7171
itinerary_secrets: {
7272
itinerary_id: 'demo',
73-
enabled: false,
74-
offset_minutes: 30,
73+
enabled: true,
74+
offset_minutes: 60,
7575
created_at: now,
7676
updated_at: now,
7777
},

apps/web/src/lib/themes/standard-seasons/winter/demo-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ export function getDemoData(): DemoDataSet {
7070
],
7171
itinerary_secrets: {
7272
itinerary_id: 'demo',
73-
enabled: false,
74-
offset_minutes: 30,
73+
enabled: true,
74+
offset_minutes: 60,
7575
created_at: now,
7676
updated_at: now,
7777
},

0 commit comments

Comments
 (0)