1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
colors = {
"bg0": " #fbf1c7",
"bg1": " #ebdbb2",
"bg2": " #d5c4a1",
"bg3": " #bdae93",
"bg4": " #a89984",
"gry": " #928374",
"fg4": " #7c6f64",
"fg3": " #665c54",
"fg2": " #504945",
"fg1": " #3c3836",
"fg0": " #282828",
"red": " #cc241d",
"red2": " #9d0006",
"orange": " #d65d0e",
"orange2": " #af3a03",
"yellow": " #d79921",
"yellow2": " #b57614",
"green": " #98971a",
"green2": " #79740e",
"aqua": " #689d6a",
"aqua2": " #427b58",
"blue": " #458588",
"blue2": " #076678",
"purple": " #b16286",
"purple2": " #8f3f71",
}
html_theme = "default"
html_theme_options = {
"light_css_variables": {
"font-stack": "Fira Sans, sans-serif",
"font-stack--monospace": "Fira Code, monospace",
"color-brand-primary": colors["purple2"],
"color-brand-content": colors["blue2"],
},
"dark_css_variables": {
"color-brand-primary": colors["purple"],
"color-brand-content": colors["blue"],
"color-background-primary": colors["fg1"],
"color-background-secondary": colors["fg0"],
"color-foreground-primary": colors["bg0"],
"color-foreground-secondary": colors["bg1"],
"color-highlighted-background": colors["yellow"],
"color-highlight-on-target": colors["fg2"],
},
}
highlight_language = "python3"
pygments_style = "gruvbox-light"
pygments_dark_style = "gruvbox-dark"
|