about summary refs log tree commit diff
path: root/src/view/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/lib')
-rw-r--r--src/view/lib/hooks/usePalette.ts4
-rw-r--r--src/view/lib/themes.ts2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/view/lib/hooks/usePalette.ts b/src/view/lib/hooks/usePalette.ts
index 9eb3e41a7..890439f34 100644
--- a/src/view/lib/hooks/usePalette.ts
+++ b/src/view/lib/hooks/usePalette.ts
@@ -10,6 +10,7 @@ export interface UsePaletteValue {
   textLight: TextStyle
   textInverted: TextStyle
   link: TextStyle
+  icon: TextStyle
 }
 export function usePalette(color: PaletteColorName): UsePaletteValue {
   const palette = useTheme().palette[color]
@@ -36,5 +37,8 @@ export function usePalette(color: PaletteColorName): UsePaletteValue {
     link: {
       color: palette.link,
     },
+    icon: {
+      color: palette.icon,
+    },
   }
 }
diff --git a/src/view/lib/themes.ts b/src/view/lib/themes.ts
index 429a76021..b9e2bdacf 100644
--- a/src/view/lib/themes.ts
+++ b/src/view/lib/themes.ts
@@ -13,7 +13,7 @@ export const defaultTheme: Theme = {
       textInverted: colors.white,
       link: colors.blue3,
       border: '#f0e9e9',
-      icon: colors.gray2,
+      icon: colors.gray3,
 
       // non-standard
       textVeryLight: colors.gray4,