Merge branch 'main' of github.com:lite-note/lite-note

This commit is contained in:
Julien Calixte
2025-01-05 23:12:53 +01:00
3 changed files with 17 additions and 5 deletions

4
.env
View File

@@ -1,2 +1,2 @@
VITE_LIGHT_MODE=lemonade VITE_LIGHT_MODE=nord
VITE_DARK_MODE=night VITE_DARK_MODE=sunset

View File

@@ -1 +1 @@
bfb216cb825c48c91b790e53701776c6a2efd021569101bdca144434eecaad3c f9b344787f9c20d36a27837d32612d87447737831e824760223ebee16db7ad5c

View File

@@ -30,17 +30,29 @@ module.exports = {
typography: () => ({ typography: () => ({
DEFAULT: { DEFAULT: {
css: { css: {
'font-size': '15pt', 'font-size': '13pt',
'font-family': '"Courier Prime", monospace', 'font-family': '"Courier Prime", monospace',
...defaultTitleStyles, ...defaultTitleStyles,
p: { p: {
'margin-top': '0.8em', 'margin-top': '0.8em',
'margin-bottom': '0.8em' 'margin-bottom': '0.8em',
'text-align': 'justify'
}, },
img: { img: {
'margin-top': 0, 'margin-top': 0,
'margin-bottom': 0, 'margin-bottom': 0,
'border-radius': '1rem' 'border-radius': '1rem'
},
a: {
'text-decoration': 'none',
color: 'oklch(var(--s))'
},
'a:hover': {
'text-decoration': 'underline'
},
li: {
'margin-top': 0,
'margin-bottom': 0
} }
} }
} }