summaryrefslogtreecommitdiff
path: root/pages/_app.tsx
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-28 14:48:13 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-28 14:48:13 +0200
commit49aee30dccde55e331b06232703dcd386efd72f3 (patch)
treeaff01585ebdea90735d3c311e441dbc26842f508 /pages/_app.tsx
parent13b121332a9ba5132e70c62a545fa58b9e07ddfa (diff)
changed button colors a bit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r--pages/_app.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
index 8acf76b..aa0e428 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -104,6 +104,20 @@ function MyApp({ Component, pageProps }: AppProps) {
shadows: {
outline: '0 0 0 3px ' + borderColor,
},
+ components: {
+ Button: {
+ variants: {
+ outline: {
+ border: '2px solid',
+ borderColor: 'purple.500',
+ color: 'purple.500',
+ },
+ ghost: {
+ color: 'purple.500',
+ },
+ },
+ },
+ },
}
}, [JSON.stringify(emacsTheme)])