feat: initial site

This commit is contained in:
Folke Lemaitre 2024-06-18 23:17:53 +02:00
commit df4dc74ead
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
31 changed files with 10703 additions and 0 deletions

76
src/css/custom.css Normal file
View file

@ -0,0 +1,76 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e7de9;
--ifm-color-primary-dark: #186ee3;
--ifm-color-primary-darker: #1768d7;
--ifm-color-primary-darkest: #1355b1;
--ifm-color-primary-light: #478dec;
--ifm-color-primary-lighter: #5495ed;
--ifm-color-primary-lightest: #7aacf1;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: #2f334d;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #82aaff;
--ifm-color-primary-dark: #5b90ff;
--ifm-color-primary-darker: #4883ff;
--ifm-color-primary-darkest: #0f5bff;
--ifm-color-primary-light: #a8c4ff;
--ifm-color-primary-lighter: #bcd1ff;
--ifm-color-primary-lightest: #f5f9ff;
--ifm-background-color: #222436;
--ifm-background-color: #1e2030;
--ifm-heading-color: #bcd1ff;
--ifm-navbar-search-input-background-color: #2f334d;
}
.logosvg {
max-width: 570px;
}
.logosvg path {
fill: var(--ifm-color-primary);
}
.navbar__logo img {
fill: var(--ifm-color-primary);
}
.footer--dark {
--ifm-footer-background-color: #2f334d;
}
html[data-theme="dark"] {
--primary-bg: #222436;
--ifm-background-color: #1e2030;
--ifm-background-surface-color: #222436;
}
.social {
display: flex;
align-items: center;
gap: 1rem;
padding: 0;
}
.social path {
fill: var(--ifm-navbar-link-color);
}
.social:hover path {
fill: var(--ifm-color-primary);
}
@media screen and (max-width: 996px) {
.social {
display: none;
}
}

View file

@ -0,0 +1,75 @@
module.exports = {
plain: {
color: "#3760bf",
backgroundColor: "#e1e2e7",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#f52a65",
},
},
{
types: ["function"],
style: {
color: "#2e7de9",
},
},
{
types: ["symbol"],
style: {
color: "#188092",
},
},
{
types: ["punctuation"],
style: {
color: "#9854f1",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#587539",
},
},
{
types: ["keyword"],
style: {
color: "#7847bd",
},
},
{
types: ["operator"],
style: {
color: "#006a83",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#b15c00",
},
},
{
types: ["variable"],
style: {
color: "#3760bf",
},
},
{
types: ["comment"],
style: {
color: "#848cb5",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};

View file

@ -0,0 +1,75 @@
module.exports = {
plain: {
color: "#c8d3f5",
backgroundColor: "#222436",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#ff757f",
},
},
{
types: ["function"],
style: {
color: "#82aaff",
},
},
{
types: ["symbol"],
style: {
color: "#65bcff",
},
},
{
types: ["punctuation"],
style: {
color: "#c099ff",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#c3e88d",
},
},
{
types: ["keyword"],
style: {
color: "#fca7ea",
},
},
{
types: ["operator"],
style: {
color: "#89ddff",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff966c",
},
},
{
types: ["variable"],
style: {
color: "#c8d3f5",
},
},
{
types: ["comment"],
style: {
color: "#636da6",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};

View file

@ -0,0 +1,75 @@
module.exports = {
plain: {
color: "#c0caf5",
backgroundColor: "#1a1b26",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#f7768e",
},
},
{
types: ["function"],
style: {
color: "#7aa2f7",
},
},
{
types: ["symbol"],
style: {
color: "#2ac3de",
},
},
{
types: ["punctuation"],
style: {
color: "#bb9af7",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#9ece6a",
},
},
{
types: ["keyword"],
style: {
color: "#9d7cd8",
},
},
{
types: ["operator"],
style: {
color: "#89ddff",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff9e64",
},
},
{
types: ["variable"],
style: {
color: "#c0caf5",
},
},
{
types: ["comment"],
style: {
color: "#565f89",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};

View file

@ -0,0 +1,75 @@
module.exports = {
plain: {
color: "#c0caf5",
backgroundColor: "#24283b",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#f7768e",
},
},
{
types: ["function"],
style: {
color: "#7aa2f7",
},
},
{
types: ["symbol"],
style: {
color: "#2ac3de",
},
},
{
types: ["punctuation"],
style: {
color: "#bb9af7",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#9ece6a",
},
},
{
types: ["keyword"],
style: {
color: "#9d7cd8",
},
},
{
types: ["operator"],
style: {
color: "#89ddff",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff9e64",
},
},
{
types: ["variable"],
style: {
color: "#c0caf5",
},
},
{
types: ["comment"],
style: {
color: "#565f89",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};