fix: Blockquote themes
This commit is contained in:
parent
8632ae7a79
commit
3a8a9c8105
|
@ -17,7 +17,7 @@ Strongest of Gensokyo
|
|||
|
||||
# Projects
|
||||
|
||||
> This is a quote
|
||||
> People say nothing is impossible but I do nothing everyday. -- Winnie The Pooh
|
||||
|
||||
```python
|
||||
for i in range(9):
|
||||
|
|
|
@ -6,3 +6,13 @@ tags: ["Cirno"]
|
|||
# Content
|
||||
|
||||
Here are some contents for the perfect math class. [A link](https://example.com)
|
||||
|
||||
```lean
|
||||
theorem perfect_number_theorem (n: Nat),
|
||||
Nat.is_odd → ¬perfect n := by
|
||||
intro h
|
||||
apply cirno_theorem
|
||||
```
|
||||
|
||||
> :>WARNING
|
||||
> The proof is elusive!
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
blockquote {
|
||||
background: #fafaee;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ const langs = [
|
|||
"typescript",
|
||||
];
|
||||
const highlightingThemes = {
|
||||
light: 'solarized-light',
|
||||
dark: 'andromeeda',
|
||||
light: 'vitesse-light',
|
||||
dark: 'vitesse-dark',
|
||||
};
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
|
|
|
@ -139,6 +139,9 @@ const config: Config = {
|
|||
color: theme('colors.java.500'),
|
||||
},
|
||||
},
|
||||
blockquote: {
|
||||
color: theme('colors.gray.800'),
|
||||
}
|
||||
};
|
||||
const themeStar = {
|
||||
color: theme('colors.gray.200'),
|
||||
|
@ -160,6 +163,9 @@ const config: Config = {
|
|||
color: theme('colors.java.500'),
|
||||
},
|
||||
},
|
||||
blockquote: {
|
||||
color: theme('colors.gray.300'),
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue