mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
feat: initial site
This commit is contained in:
parent
0671c76f96
commit
df4dc74ead
31 changed files with 10703 additions and 0 deletions
76
src/css/custom.css
Normal file
76
src/css/custom.css
Normal 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;
|
||||
}
|
||||
}
|
75
src/themes/prism/tokyonight_day.js
Normal file
75
src/themes/prism/tokyonight_day.js
Normal 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)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
75
src/themes/prism/tokyonight_moon.js
Normal file
75
src/themes/prism/tokyonight_moon.js
Normal 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)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
75
src/themes/prism/tokyonight_night.js
Normal file
75
src/themes/prism/tokyonight_night.js
Normal 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)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
75
src/themes/prism/tokyonight_storm.js
Normal file
75
src/themes/prism/tokyonight_storm.js
Normal 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)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue