Skip to content

Commit ad7fab4

Browse files
agbaumclaude
andcommitted
Overhaul color palette to warm paper light theme
Replaces dark purple palette with a warm parchment-inspired light theme: warm off-white backgrounds, dark ink text, terracotta accent. Bumps version to 1.0.6 / versionCode 10. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9c5c93d commit ad7fab4

2 files changed

Lines changed: 21 additions & 21 deletions

File tree

app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "reader",
44
"slug": "reader",
5-
"version": "1.0.5",
5+
"version": "1.0.6",
66
"orientation": "portrait",
77
"icon": "./assets/images/icon.png",
88
"scheme": "reader",
@@ -21,7 +21,7 @@
2121
"predictiveBackGestureEnabled": false,
2222
"usesCleartextTraffic": true,
2323
"package": "com.akpgreentree.reader",
24-
"versionCode": 9
24+
"versionCode": 10
2525
},
2626
"web": {
2727
"output": "static",

src/constants/colors.ts

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
const Colors = {
22
light: {
3-
background: "#0D0914",
4-
surface: "#160F22",
5-
surfaceAlt: "#1E1530",
6-
border: "#2A1F3D",
7-
text: "#EDE8F5",
8-
textSecondary: "#9B8AB0",
9-
textTertiary: "#5E5075",
10-
accent: "#C39BE0",
11-
accentLight: "#2A1848",
12-
unread: "#EDE8F5",
13-
read: "#5E5075",
14-
tint: "#C39BE0",
15-
tabIconDefault: "#5E5075",
16-
tabIconSelected: "#C39BE0",
17-
separator: "#2A1F3D",
18-
tag: "#1E1530",
19-
tagText: "#9B8AB0",
20-
danger: "#E53935",
21-
success: "#4CAF50",
3+
background: "#F5F0E8",
4+
surface: "#FDFAF5",
5+
surfaceAlt: "#EDE8DC",
6+
border: "#D6CFC3",
7+
text: "#1C1814",
8+
textSecondary: "#6B6059",
9+
textTertiary: "#A89E93",
10+
accent: "#B84A1E",
11+
accentLight: "#F5E8E0",
12+
unread: "#1C1814",
13+
read: "#A89E93",
14+
tint: "#B84A1E",
15+
tabIconDefault: "#A89E93",
16+
tabIconSelected: "#B84A1E",
17+
separator: "#D6CFC3",
18+
tag: "#EDE8DC",
19+
tagText: "#6B6059",
20+
danger: "#C0392B",
21+
success: "#2E7D32",
2222
},
2323
};
2424

0 commit comments

Comments
 (0)