summaryrefslogtreecommitdiff
path: root/lib/theme.tsx
diff options
context:
space:
mode:
authorMichal Sapka <michal@sapka.me>2022-09-06 22:12:20 +0200
committerMichal Sapka <michal@sapka.me>2022-09-06 22:12:20 +0200
commite3ae3ef10b78347187a01735b049d3275ffe98d4 (patch)
tree6eccae40ac302f04265dbdbb817ea87bfc6059a4 /lib/theme.tsx
parent235ed03b12c9fdfe56fead82f78fae64017f6b14 (diff)
feat: test link color
Diffstat (limited to 'lib/theme.tsx')
-rw-r--r--lib/theme.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/theme.tsx b/lib/theme.tsx
index 8b65ac2..5e2c0b6 100644
--- a/lib/theme.tsx
+++ b/lib/theme.tsx
@@ -4,7 +4,7 @@ import { mode } from '@chakra-ui/theme-tools'
type propsType = any
const styles = {
- global: (props : propsType) => {
+ global: (_props : propsType) => {
body: {
//bg: mode('#d5d6db', '#24283b')(props),
//color: mode('#0f4b6e', '#7dcfff')(props),
@@ -15,8 +15,8 @@ const styles = {
const components = {
Link: {
baseStyle: (props : propsType) => {
- //color: mode('#34548a', '##34548a')(props),
- textUnderlineOffset: 3
+ color: mode('#34548a', '##34548a')(props);
+ textUnderlineOffset: 3;
}
},
Heading: {