[#754,landing page][xl]: added hero section and feature section, enabled dark mode, updated navbar, enabled toc

This commit is contained in:
deme
2023-04-17 18:54:10 -03:00
parent 34cbb1e8af
commit b3293625a4
26 changed files with 4556 additions and 908 deletions

View File

@@ -1,4 +1,5 @@
@import "@flowershow/remark-callouts/styles.css";
@import './prism.css';
html,
body {

47
site/styles/prism.css Normal file
View File

@@ -0,0 +1,47 @@
pre[class*='language-'] {
color: theme('colors.slate.50');
}
.token.tag,
.token.class-name,
.token.selector,
.token.selector .class,
.token.selector.class,
.token.function {
color: theme('colors.pink.400');
}
.token.attr-name,
.token.keyword,
.token.rule,
.token.pseudo-class,
.token.important {
color: theme('colors.slate.300');
}
.token.module {
color: theme('colors.pink.400');
}
.token.attr-value,
.token.class,
.token.string,
.token.property {
color: theme('colors.sky.300');
}
.token.punctuation,
.token.attr-equals {
color: theme('colors.slate.500');
}
.token.unit,
.language-css .token.function {
color: theme('colors.teal.200');
}
.token.comment,
.token.operator,
.token.combinator {
color: theme('colors.slate.400');
}