initial commit
2
.gitattributes
gevendort
Normale Datei
|
@ -0,0 +1,2 @@
|
||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
3
.gitmodules
gevendort
Normale Datei
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/duckquill"]
|
||||||
|
path = themes/duckquill
|
||||||
|
url = https://codeberg.org/daudix/duckquill.git
|
9
LICENSE
Normale Datei
|
@ -0,0 +1,9 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 user0x42
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
12
README.md
Normale Datei
|
@ -0,0 +1,12 @@
|
||||||
|
# u42.dev
|
||||||
|
|
||||||
|
Personal Homepage
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
- [Zola](https://getzola.org) static site engine
|
||||||
|
- [Duckquill](https://duckquill.daudix.one) great theme
|
||||||
|
|
||||||
|
## Disclaimer
|
||||||
|
|
||||||
|
The project itself is licensed under the [**MIT**](LICENSE) license, and the images and logos owned by [**user0x42**](https://u42.dev) are licensed under the [**CC BY-NC 4.0**](https://creativecommons.org/licenses/by-nc/4.0/) license
|
213
config.toml
Normale Datei
|
@ -0,0 +1,213 @@
|
||||||
|
title = "user0x42"
|
||||||
|
base_url = "https://u42.dev"
|
||||||
|
description = "Home of a Random Dude."
|
||||||
|
|
||||||
|
theme = "duckquill"
|
||||||
|
|
||||||
|
compile_sass = true
|
||||||
|
minify_html = true
|
||||||
|
generate_feeds = true
|
||||||
|
# Only the first file will be used in the navbar feed button,
|
||||||
|
# other feeds will still be available in page's head.
|
||||||
|
feed_filenames = ["rss.xml", "atom.xml"]
|
||||||
|
build_search_index = true
|
||||||
|
author = "user0x42"
|
||||||
|
|
||||||
|
# Based on https://github.com/welpo/tabi
|
||||||
|
#
|
||||||
|
# To translate the entire theme, there must be a file with the same ISO 639-1 or BCP 47
|
||||||
|
# language code in the `i18n` directory of your site or the Duckquill theme.
|
||||||
|
# For example, "i18n/fr.toml" for French or "i18n/zh-Hans.toml" for Simplified Chinese.
|
||||||
|
# Otherwise the theme will be in English.
|
||||||
|
#
|
||||||
|
# ISO 639-1: https://localizely.com/iso-639-1-list/
|
||||||
|
# BCP 47: https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
|
||||||
|
default_language = "en"
|
||||||
|
|
||||||
|
taxonomies = [{ name = "tags", feed = true }]
|
||||||
|
|
||||||
|
[markdown]
|
||||||
|
highlight_code = true
|
||||||
|
highlight_theme = "css"
|
||||||
|
highlight_themes_css = [
|
||||||
|
{ theme = "solarized-dark", filename = "syntax-theme-dark.css" },
|
||||||
|
{ theme = "solarized-light", filename = "syntax-theme-light.css" }
|
||||||
|
]
|
||||||
|
smart_punctuation = true
|
||||||
|
bottom_footnotes = true
|
||||||
|
|
||||||
|
[search]
|
||||||
|
# index_format = "elasticlunr_json"
|
||||||
|
index_format = "fuse_json"
|
||||||
|
|
||||||
|
taxonomies = [{ name = "tags", feed = true }]
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
# Which theme should be used by default (light/dark).
|
||||||
|
#
|
||||||
|
default_theme = "dark"
|
||||||
|
#
|
||||||
|
# Sets theme and browser theme color.
|
||||||
|
# See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
|
||||||
|
accent_color = "#72BCDE"
|
||||||
|
# Ditto but for the dark theme.
|
||||||
|
# If not set regular variant will be used.
|
||||||
|
accent_color_dark = "#2d7ea0"
|
||||||
|
# Whether to fix low contrast in text selection, checkboxes, etc.
|
||||||
|
# Use only if the default doesn't provide enough contrast, e.g. the accent color is set to yellow.
|
||||||
|
#
|
||||||
|
fix_contrast = false
|
||||||
|
#
|
||||||
|
# Ditto but for the dark theme.
|
||||||
|
fix_contrast_dark = true
|
||||||
|
# Whether to use fonts bundled with Duckquill instead of system ones.
|
||||||
|
# Keep in mind that it also changes the style of headings.
|
||||||
|
#
|
||||||
|
bundled_fonts = true
|
||||||
|
#
|
||||||
|
# Use emoji as a favicon.
|
||||||
|
# Only one emoji is being rendered, everything else is truncated.
|
||||||
|
#
|
||||||
|
# emoji_favicon = "🦆"
|
||||||
|
#
|
||||||
|
# URL to website's issue tracker
|
||||||
|
issues_url = "https://codeberg.org/user0x42/u42/issues"
|
||||||
|
# URL to website's source code
|
||||||
|
source_url = "https://codeberg.org/user0x42/u42"
|
||||||
|
# Additional CSS styles; expects them to be in the "./static/" directory.
|
||||||
|
# If you are using Sass it will be generated there automatically.
|
||||||
|
#
|
||||||
|
styles = [
|
||||||
|
"mods.css"
|
||||||
|
]
|
||||||
|
#
|
||||||
|
# Additional JavaScript scripts; expects them to be in the "./static/" directory.
|
||||||
|
#
|
||||||
|
# scripts = [
|
||||||
|
# "YOUR_SCRIPT.js",
|
||||||
|
# "ALSO_YOUR_SCRIPT.js"
|
||||||
|
# ]
|
||||||
|
#
|
||||||
|
# Whether to show "copy code" button on all code blocks
|
||||||
|
# that have the language set.
|
||||||
|
# See https://www.getzola.org/documentation/content/syntax-highlighting/
|
||||||
|
show_copy_button = true
|
||||||
|
# Whether to show estimated read time in posts.
|
||||||
|
show_reading_time = true
|
||||||
|
#
|
||||||
|
# Whether to show a share button in article's quick actions.
|
||||||
|
# Uses https://shareopenly.org.
|
||||||
|
show_share_button = true
|
||||||
|
# Whether to show the backlinks button for linked articles in the article's quick actions
|
||||||
|
show_backlinks = true
|
||||||
|
# Whether to enable the KaTeX library for rendering LaTeX.
|
||||||
|
# Note: This will make your page significantly heavier.
|
||||||
|
# Instead, consider enabling it per page/section.
|
||||||
|
# katex = true
|
||||||
|
#
|
||||||
|
# Whether to render table of contents on all pages.
|
||||||
|
# Will not be rendered if page doesn't have any headings.
|
||||||
|
# Can be set per page/section.
|
||||||
|
# toc = true
|
||||||
|
#
|
||||||
|
# Whether to render inline table of contents at the top of all pages,
|
||||||
|
# in addition to floating quick navigation buttons.
|
||||||
|
# Can be set per page/section.
|
||||||
|
# toc_inline = true
|
||||||
|
#
|
||||||
|
# Whether to use numbered (ordered) list for table of contents.
|
||||||
|
# Can be set per page/section.
|
||||||
|
# toc_ordered = true
|
||||||
|
#
|
||||||
|
# Custom separator used across the theme.
|
||||||
|
# separator = "•"
|
||||||
|
# Custom separator used in title tag and posts metadata.
|
||||||
|
# title_separator = "-"
|
||||||
|
#
|
||||||
|
# Whether to use Content Security Policy.
|
||||||
|
# Keep in mind that although this can potentially increase security,
|
||||||
|
# it can break some stuff, in which case you will need to set custom policy.
|
||||||
|
csp = [
|
||||||
|
{ directive = "font-src", domains = ["'self'"] },
|
||||||
|
{ directive = "img-src", domains = ["'self'", "https:", "data:"] },
|
||||||
|
{ directive = "media-src", domains = ["'self'", "https:"] },
|
||||||
|
{ directive = "script-src", domains = ["'self'"] },
|
||||||
|
{ directive = "style-src", domains = ["'self'", "'unsafe-inline'"] },
|
||||||
|
{ directive = "frame-src", domains = ["https://player.vimeo.com", "https://www.youtube-nocookie.com", "https://toot.community"] },
|
||||||
|
{ directive = "connect-src", domains = ["https://toot.community"] },
|
||||||
|
{ directive = "frame-ancestors", domains = ["'none'"] },
|
||||||
|
{ directive = "base-uri", domains = ["'none'"] },
|
||||||
|
{ directive = "form-action", domains = ["'none'"] }
|
||||||
|
]
|
||||||
|
|
||||||
|
[extra.nav]
|
||||||
|
# Whether to automatically hide nav when not hovered or focused
|
||||||
|
auto_hide = true
|
||||||
|
# Whether to show the Atom/RSS feed button in the nav
|
||||||
|
show_feed = true
|
||||||
|
# Whether to show the manual theme switcher in the nav
|
||||||
|
show_theme_switcher = true
|
||||||
|
# Whether to show the link to the source repository in the nav
|
||||||
|
show_repo = true
|
||||||
|
# Links used in the nav.
|
||||||
|
# For local files use same link format as in Markdown,
|
||||||
|
# i.e. "@/blog/_index.md".
|
||||||
|
# See https://www.getzola.org/documentation/content/linking/#internal-links
|
||||||
|
#links = [
|
||||||
|
# { name = "Links", menu = [
|
||||||
|
# { url = "@/blog/_index.md", name = "Blog" },
|
||||||
|
# ] },
|
||||||
|
# { url = "https://diadz.de", name = "DIADZ" }
|
||||||
|
#]
|
||||||
|
links = [
|
||||||
|
{ url = "@/blog/_index.md", name = "Blog" },
|
||||||
|
{ url = "https://diadz.de", name = "DIADZ" }
|
||||||
|
]
|
||||||
|
|
||||||
|
[extra.footer]
|
||||||
|
# Links used in the footer.
|
||||||
|
# Same as the nav ones.
|
||||||
|
links = [
|
||||||
|
{ url = "@/blog/_index.md", name = "Blog" },
|
||||||
|
{ url = "https://diadz.de", name = "DIADZ" }
|
||||||
|
]
|
||||||
|
# Social links in the footer.
|
||||||
|
# Any URL-encoded SVG can be used as an icon.
|
||||||
|
# https://simpleicons.org is the recommended source of SVG icons.
|
||||||
|
# For URL encoding use https://yoksel.github.io/url-encoder/.
|
||||||
|
# Make sure that "external quotes" are set to "double".
|
||||||
|
socials = [
|
||||||
|
{ url = "https://codeberg.org/user0x42", name = "Codeberg", icon = "%3Csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3ECodeberg%3C/title%3E%3Cpath d='M11.955.49A12 12 0 0 0 0 12.49a12 12 0 0 0 1.832 6.373L11.838 5.928a.187.14 0 0 1 .324 0l10.006 12.935A12 12 0 0 0 24 12.49a12 12 0 0 0-12-12 12 12 0 0 0-.045 0zm.375 6.467l4.416 16.553a12 12 0 0 0 5.137-4.213z'/%3E%3C/svg%3E" },
|
||||||
|
{ url = "https://github.com/user0x42", name = "GitHub", icon = "%3Csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EGitHub%3C/title%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E" },
|
||||||
|
{ url = "https://social.vivaldi.net/@user0x42", name = "Mastodon", icon = "%3Csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EMastodon%3C/title%3E%3Cpath d='M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z'/%3E%3C/svg%3E" }
|
||||||
|
]
|
||||||
|
# Whether to show "© Title, YEAR"
|
||||||
|
show_copyright = true
|
||||||
|
# Whether to show "Powered by Zola and Duckquill"
|
||||||
|
show_powered_by = true
|
||||||
|
# Whether to show link to website source
|
||||||
|
show_source = false
|
||||||
|
# Custom copyright text
|
||||||
|
#
|
||||||
|
# copyright = "© *Aperture* **Science** ~~Innovators~~, `1972`"
|
||||||
|
|
||||||
|
# Based on https://carlschwan.eu/2020/12/29/adding-comments-to-your-static-blog-with-mastodon/
|
||||||
|
#
|
||||||
|
# Mastodon-powered commenting.
|
||||||
|
# Values can be overridden in the front-matter, e.g.
|
||||||
|
# for multi-author blogs or guest posts.
|
||||||
|
#
|
||||||
|
# These variables are also used for Mastodon verification,
|
||||||
|
# the needed rel="me" link is set in the head based on these.
|
||||||
|
[extra.comments]
|
||||||
|
# Your Mastodon API host; instance that you have an account on.
|
||||||
|
host = "social.vivaldi.net"
|
||||||
|
# Your Mastodon username; used to determine who the original poster is.
|
||||||
|
user = "user0x42"
|
||||||
|
# Whether to show the QR code to Mastodon post
|
||||||
|
show_qr = true
|
||||||
|
|
||||||
|
# GoatCounter analytics; enabled only if present in config.
|
||||||
|
[extra.goatcounter]
|
||||||
|
# host = "YOUR_SERVER"
|
||||||
|
user = "u42"
|
20
content/_index.md
Normale Datei
|
@ -0,0 +1,20 @@
|
||||||
|
+++
|
||||||
|
insert_anchor_links = "left"
|
||||||
|
title = "Home"
|
||||||
|
+++
|
||||||
|
|
||||||
|
{% crt() %}
|
||||||
|
```
|
||||||
|
╔──────────────────────────────────────────────────────────────────╗
|
||||||
|
│██╗---██╗███████╗███████╗██████╗--██████╗-██╗--██╗██╗--██╗██████╗-│
|
||||||
|
│██║---██║██╔════╝██╔════╝██╔══██╗██╔═████╗╚██╗██╔╝██║--██║╚════██╗│
|
||||||
|
│██║---██║███████╗█████╗--██████╔╝██║██╔██║-╚███╔╝-███████║-█████╔╝│
|
||||||
|
│██║---██║╚════██║██╔══╝--██╔══██╗████╔╝██║-██╔██╗-╚════██║██╔═══╝-│
|
||||||
|
│╚██████╔╝███████║███████╗██║--██║╚██████╔╝██╔╝-██╗-----██║███████╗│
|
||||||
|
│-╚═════╝-╚══════╝╚══════╝╚═╝--╚═╝-╚═════╝-╚═╝--╚═╝-----╚═╝╚══════╝│
|
||||||
|
╚──────────────────────────────────────────────────────────────────╝
|
||||||
|
```
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
<progress value="30" max="100"></progress>
|
||||||
|
<p style="text-align:center;"><mark>Website Status</mark></p>
|
9
content/blog/_index.md
Normale Datei
|
@ -0,0 +1,9 @@
|
||||||
|
+++
|
||||||
|
title = "user0x42's Randomness"
|
||||||
|
sort_by = "date"
|
||||||
|
template = "article_list.html"
|
||||||
|
page_template = "article.html"
|
||||||
|
paginate_by = 2
|
||||||
|
+++
|
||||||
|
|
||||||
|
Blog full of Randomness.
|
BIN
content/blog/u42/darkness.gif
Normale Datei
Nachher Breite: | Höhe: | Größe: 1,1 MiB |
26
content/blog/u42/index.md
Normale Datei
|
@ -0,0 +1,26 @@
|
||||||
|
+++
|
||||||
|
authors = ["user0x42"]
|
||||||
|
title = "Random"
|
||||||
|
description = "This is peak randomness."
|
||||||
|
date = 2024-12-20
|
||||||
|
[taxonomies]
|
||||||
|
tags = ["Demo", "Test"]
|
||||||
|
[extra]
|
||||||
|
featured = true
|
||||||
|
banner = "darkness.gif"
|
||||||
|
toc = true
|
||||||
|
toc_inline = true
|
||||||
|
toc_ordered = true
|
||||||
|
trigger = "This page contains **AI Generated** art."
|
||||||
|
disclaimer = """
|
||||||
|
- **Hail** our AI Overlords.
|
||||||
|
- **DO NOT** be **MEAN** to them or **SUFFER** the consequences.
|
||||||
|
"""
|
||||||
|
+++
|
||||||
|
|
||||||
|
## Randomness
|
||||||
|
|
||||||
|
<figure>
|
||||||
|
|
||||||
|

|
||||||
|
</figure>
|
BIN
content/blog/u42/randomness.webp
Normale Datei
Nachher Breite: | Höhe: | Größe: 503 KiB |
BIN
content/u42-aaabstract.png
Normale Datei
Nachher Breite: | Höhe: | Größe: 2,1 MiB |
6
sass/mods.scss
Normale Datei
|
@ -0,0 +1,6 @@
|
||||||
|
body {
|
||||||
|
background-image: var(--bg-overlay), url("u42-aaabstract.png");
|
||||||
|
background-position: center;
|
||||||
|
background-size: cover;
|
||||||
|
background-attachment: fixed;
|
||||||
|
}
|
BIN
static/apple-touch-icon.png
Normale Datei
Nachher Breite: | Höhe: | Größe: 104 KiB |
BIN
static/favicon.png
Normale Datei
Nachher Breite: | Höhe: | Größe: 104 KiB |
BIN
static/processed_images/darkness.97e474781b0818d9.webp
Normale Datei
Nachher Breite: | Höhe: | Größe: 54 B |
BIN
static/processed_images/darkness.99ae5e00afadea2d.jpg
Normale Datei
Nachher Breite: | Höhe: | Größe: 30 KiB |
283
static/syntax-theme-dark.css
Normale Datei
|
@ -0,0 +1,283 @@
|
||||||
|
/*
|
||||||
|
* theme "Solarized (dark)" generated by syntect
|
||||||
|
*/
|
||||||
|
|
||||||
|
.z-code {
|
||||||
|
color: #839496;
|
||||||
|
background-color: #002b36;
|
||||||
|
}
|
||||||
|
|
||||||
|
.z-comment, .z-meta.z-documentation {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-string {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-string.z-regexp {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-character.z-escape {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-constant.z-numeric {
|
||||||
|
color: #6c71c4;
|
||||||
|
}
|
||||||
|
.z-variable {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-variable.z-function {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-variable.z-language {
|
||||||
|
color: #d33682;
|
||||||
|
}
|
||||||
|
.z-keyword {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-meta.z-import .z-keyword, .z-keyword.z-control.z-import, .z-keyword.z-control.z-import.z-from, .z-keyword.z-other.z-import, .z-keyword.z-control.z-at-rule.z-include, .z-keyword.z-control.z-at-rule.z-import {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-keyword.z-operator.z-comparison, .z-keyword.z-operator.z-assignment, .z-keyword.z-operator.z-arithmetic {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-storage {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-storage.z-modifier {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-class, .z-entity.z-name, .z-entity.z-name.z-class, .z-entity.z-name.z-type.z-class {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-inherited-class {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-support, .z-support.z-type, .z-support.z-class {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-function {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-variable {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-constant, .z-constant.z-language, .z-meta.z-preprocessor {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-section {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-construct, .z-keyword.z-other.z-new {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-constant.z-character, .z-constant.z-other {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-tag {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-tag.z-html, .z-punctuation.z-definition.z-tag.z-begin, .z-punctuation.z-definition.z-tag.z-end {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-support.z-function {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-separator.z-continuation {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-storage.z-type {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-support.z-type.z-exception {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-invalid {
|
||||||
|
background-color: #6e2e32;
|
||||||
|
}
|
||||||
|
.z-string.z-quoted.z-double, .z-string.z-quoted.z-single {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-string {
|
||||||
|
color: #839496;
|
||||||
|
}
|
||||||
|
.z-meta.z-brace.z-square, .z-punctuation.z-section.z-brackets {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-meta.z-brace.z-round, .z-meta.z-brace.z-curly, .z-punctuation.z-section, .z-punctuation.z-section.z-block, .z-punctuation.z-definition.z-parameters, .z-punctuation.z-section.z-group {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-support.z-constant.z-color, .z-invalid.z-deprecated.z-color.z-w3c-non-standard-color-name.z-scss {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-meta.z-selector.z-css {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-tag.z-css, .z-entity.z-name.z-tag.z-scss, .z-source.z-less .z-keyword.z-control.z-html.z-elements, .z-source.z-sass .z-keyword.z-control.z-untitled {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-class {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-id {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-pseudo-element, .z-entity.z-other.z-attribute-name.z-tag.z-pseudo-element, .z-entity.z-other.z-attribute-name.z-pseudo-class, .z-entity.z-other.z-attribute-name.z-tag.z-pseudo-class {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-text.z-html.z-basic .z-meta.z-tag.z-other.z-html, .z-text.z-html.z-basic .z-meta.z-tag.z-any.z-html, .z-text.z-html.z-basic .z-meta.z-tag.z-block.z-any, .z-text.z-html.z-basic .z-meta.z-tag.z-inline.z-any, .z-text.z-html.z-basic .z-meta.z-tag.z-structure.z-any.z-html, .z-text.z-html.z-basic .z-source.z-js.z-embedded.z-html, .z-punctuation.z-separator.z-key-value.z-html {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-text.z-html.z-basic .z-entity.z-other.z-attribute-name.z-html, .z-meta.z-tag.z-xml .z-entity.z-other.z-attribute-name {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method.z-ruby {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-variable.z-other.z-constant.z-ruby {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-constant.z-other.z-symbol.z-ruby {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method.z-ruby {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-meta.z-array .z-support.z-function.z-construct.z-php {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-function.z-preprocessor.z-c, .z-meta.z-preprocessor.z-c.z-include, .z-meta.z-preprocessor.z-macro.z-c {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-meta.z-preprocessor.z-c.z-include .z-string.z-quoted.z-other.z-lt-gt.z-include.z-c, .z-meta.z-preprocessor.z-c.z-include .z-punctuation.z-definition.z-string.z-begin.z-c, .z-meta.z-preprocessor.z-c.z-include .z-punctuation.z-definition.z-string.z-end.z-c {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-other.z-package.z-exclude, .z-other.z-remove {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-other.z-add {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-section.z-group.z-tex, .z-punctuation.z-definition.z-arguments.z-begin.z-latex, .z-punctuation.z-definition.z-arguments.z-end.z-latex, .z-punctuation.z-definition.z-arguments.z-latex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-meta.z-group.z-braces.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-string.z-other.z-math.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-variable.z-parameter.z-function.z-latex {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-constant.z-math.z-tex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-text.z-tex.z-latex .z-constant.z-other.z-math.z-tex, .z-constant.z-other.z-general.z-math.z-tex, .z-constant.z-other.z-general.z-math.z-tex, .z-constant.z-character.z-math.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-string.z-other.z-math.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-string.z-begin.z-tex, .z-punctuation.z-definition.z-string.z-end.z-tex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-label.z-latex, .z-text.z-tex.z-latex .z-constant.z-other.z-general.z-math.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-variable.z-parameter.z-definition.z-label.z-latex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-be.z-latex {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-section.z-latex {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-general.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-ref.z-latex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-storage.z-type.z-class.z-python, .z-storage.z-type.z-function.z-python, .z-storage.z-modifier.z-global.z-python {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-type.z-exception.z-python {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-meta.z-scope.z-for-in-loop.z-shell, .z-variable.z-other.z-loop.z-shell {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-meta.z-scope.z-case-block.z-shell, .z-meta.z-scope.z-case-body.z-shell {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-logical-expression.z-shell {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-storage.z-modifier.z-c++ {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-perl {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-meta.z-diff, .z-meta.z-diff.z-header {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-meta.z-diff.z-range {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-markup.z-deleted {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-markup.z-changed {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-markup.z-inserted {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-markup.z-warning {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-markup.z-error {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-markup.z-heading, .z-punctuation.z-definition.z-heading.z-markdown {
|
||||||
|
color: #b58900;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.z-markup.z-quote {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-markup.z-italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.z-markup.z-bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.z-markup.z-underline.z-link.z-markdown, .z-meta.z-link.z-reference .z-constant.z-other.z-reference.z-link.z-markdown {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-other.z-reference.z-link.z-markdown {
|
||||||
|
color: #6c71c4;
|
||||||
|
}
|
||||||
|
.z-meta.z-paragraph.z-markdown .z-meta.z-dummy.z-line-break {
|
||||||
|
background-color: #586e75;
|
||||||
|
}
|
||||||
|
.z-brackethighlighter.z-all {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-filename.z-find-in-files {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-numeric.z-line-number.z-find-in-files {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-variable.z-other.z-readwrite.z-js, .z-variable.z-other.z-object.z-js, .z-variable.z-other.z-constant.z-js {
|
||||||
|
color: #839496;
|
||||||
|
}
|
283
static/syntax-theme-light.css
Normale Datei
|
@ -0,0 +1,283 @@
|
||||||
|
/*
|
||||||
|
* theme "Solarized (light)" generated by syntect
|
||||||
|
*/
|
||||||
|
|
||||||
|
.z-code {
|
||||||
|
color: #657b83;
|
||||||
|
background-color: #fdf6e3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.z-comment, .z-meta.z-documentation {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-string {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-string.z-regexp {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-character.z-escape {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-constant.z-numeric {
|
||||||
|
color: #6c71c4;
|
||||||
|
}
|
||||||
|
.z-variable {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-variable.z-function {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-variable.z-language {
|
||||||
|
color: #d33682;
|
||||||
|
}
|
||||||
|
.z-keyword {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-meta.z-import .z-keyword, .z-keyword.z-control.z-import, .z-keyword.z-control.z-import.z-from, .z-keyword.z-other.z-import, .z-keyword.z-control.z-at-rule.z-include, .z-keyword.z-control.z-at-rule.z-import {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-keyword.z-operator.z-comparison, .z-keyword.z-operator.z-assignment, .z-keyword.z-operator.z-arithmetic {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-storage {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-storage.z-modifier {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-class, .z-entity.z-name, .z-entity.z-name.z-class, .z-entity.z-name.z-type.z-class {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-inherited-class {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-support, .z-support.z-type, .z-support.z-class {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-function {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-variable {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-constant, .z-constant.z-language, .z-meta.z-preprocessor {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-section {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-construct, .z-keyword.z-other.z-new {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-constant.z-character, .z-constant.z-other {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-tag {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-tag.z-html, .z-punctuation.z-definition.z-tag.z-begin, .z-punctuation.z-definition.z-tag.z-end {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-support.z-function {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-separator.z-continuation {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-storage.z-type {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-support.z-type.z-exception {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-invalid {
|
||||||
|
background-color: #ec9489;
|
||||||
|
}
|
||||||
|
.z-string.z-quoted.z-double, .z-string.z-quoted.z-single {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-string {
|
||||||
|
color: #839496;
|
||||||
|
}
|
||||||
|
.z-meta.z-brace.z-square, .z-punctuation.z-section.z-brackets {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-meta.z-brace.z-round, .z-meta.z-brace.z-curly, .z-punctuation.z-section, .z-punctuation.z-section.z-block, .z-punctuation.z-definition.z-parameters, .z-punctuation.z-section.z-group {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-support.z-constant.z-color, .z-invalid.z-deprecated.z-color.z-w3c-non-standard-color-name.z-scss {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-meta.z-selector.z-css {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-tag.z-css, .z-entity.z-name.z-tag.z-scss, .z-source.z-less .z-keyword.z-control.z-html.z-elements, .z-source.z-sass .z-keyword.z-control.z-untitled {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-class {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-id {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-other.z-attribute-name.z-pseudo-element, .z-entity.z-other.z-attribute-name.z-tag.z-pseudo-element, .z-entity.z-other.z-attribute-name.z-pseudo-class, .z-entity.z-other.z-attribute-name.z-tag.z-pseudo-class {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-text.z-html.z-basic .z-meta.z-tag.z-other.z-html, .z-text.z-html.z-basic .z-meta.z-tag.z-any.z-html, .z-text.z-html.z-basic .z-meta.z-tag.z-block.z-any, .z-text.z-html.z-basic .z-meta.z-tag.z-inline.z-any, .z-text.z-html.z-basic .z-meta.z-tag.z-structure.z-any.z-html, .z-text.z-html.z-basic .z-source.z-js.z-embedded.z-html, .z-punctuation.z-separator.z-key-value.z-html {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
||||||
|
.z-text.z-html.z-basic .z-entity.z-other.z-attribute-name.z-html, .z-meta.z-tag.z-xml .z-entity.z-other.z-attribute-name {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method.z-ruby {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-variable.z-other.z-constant.z-ruby {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-constant.z-other.z-symbol.z-ruby {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-keyword.z-other.z-special-method.z-ruby {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-meta.z-array .z-support.z-function.z-construct.z-php {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-function.z-preprocessor.z-c, .z-meta.z-preprocessor.z-c.z-include, .z-meta.z-preprocessor.z-macro.z-c {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-meta.z-preprocessor.z-c.z-include .z-string.z-quoted.z-other.z-lt-gt.z-include.z-c, .z-meta.z-preprocessor.z-c.z-include .z-punctuation.z-definition.z-string.z-begin.z-c, .z-meta.z-preprocessor.z-c.z-include .z-punctuation.z-definition.z-string.z-end.z-c {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-other.z-package.z-exclude, .z-other.z-remove {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-other.z-add {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-section.z-group.z-tex, .z-punctuation.z-definition.z-arguments.z-begin.z-latex, .z-punctuation.z-definition.z-arguments.z-end.z-latex, .z-punctuation.z-definition.z-arguments.z-latex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-meta.z-group.z-braces.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-string.z-other.z-math.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-variable.z-parameter.z-function.z-latex {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-constant.z-math.z-tex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-text.z-tex.z-latex .z-constant.z-other.z-math.z-tex, .z-constant.z-other.z-general.z-math.z-tex, .z-constant.z-other.z-general.z-math.z-tex, .z-constant.z-character.z-math.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-string.z-other.z-math.z-tex {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-string.z-begin.z-tex, .z-punctuation.z-definition.z-string.z-end.z-tex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-label.z-latex, .z-text.z-tex.z-latex .z-constant.z-other.z-general.z-math.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-variable.z-parameter.z-definition.z-label.z-latex {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-be.z-latex {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-section.z-latex {
|
||||||
|
color: #cb4b16;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-general.z-tex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-keyword.z-control.z-ref.z-latex {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-storage.z-type.z-class.z-python, .z-storage.z-type.z-function.z-python, .z-storage.z-modifier.z-global.z-python {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-type.z-exception.z-python {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-meta.z-scope.z-for-in-loop.z-shell, .z-variable.z-other.z-loop.z-shell {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-meta.z-scope.z-case-block.z-shell, .z-meta.z-scope.z-case-body.z-shell {
|
||||||
|
color: #586e75;
|
||||||
|
}
|
||||||
|
.z-punctuation.z-definition.z-logical-expression.z-shell {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-storage.z-modifier.z-c++ {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-support.z-function.z-perl {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-meta.z-diff, .z-meta.z-diff.z-header {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-meta.z-diff.z-range {
|
||||||
|
color: #268bd2;
|
||||||
|
}
|
||||||
|
.z-markup.z-deleted {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-markup.z-changed {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-markup.z-inserted {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-markup.z-warning {
|
||||||
|
color: #b58900;
|
||||||
|
}
|
||||||
|
.z-markup.z-error {
|
||||||
|
color: #dc322f;
|
||||||
|
}
|
||||||
|
.z-markup.z-heading, .z-punctuation.z-definition.z-heading.z-markdown {
|
||||||
|
color: #b58900;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.z-markup.z-quote {
|
||||||
|
color: #859900;
|
||||||
|
}
|
||||||
|
.z-markup.z-italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.z-markup.z-bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.z-markup.z-underline.z-link.z-markdown, .z-meta.z-link.z-reference .z-constant.z-other.z-reference.z-link.z-markdown {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-other.z-reference.z-link.z-markdown {
|
||||||
|
color: #6c71c4;
|
||||||
|
}
|
||||||
|
.z-meta.z-paragraph.z-markdown .z-meta.z-dummy.z-line-break {
|
||||||
|
background-color: #eee8d5;
|
||||||
|
}
|
||||||
|
.z-brackethighlighter.z-all {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-entity.z-name.z-filename.z-find-in-files {
|
||||||
|
color: #2aa198;
|
||||||
|
}
|
||||||
|
.z-constant.z-numeric.z-line-number.z-find-in-files {
|
||||||
|
color: #93a1a1;
|
||||||
|
}
|
||||||
|
.z-variable.z-other.z-readwrite.z-js, .z-variable.z-other.z-object.z-js, .z-variable.z-other.z-constant.z-js {
|
||||||
|
color: #657b83;
|
||||||
|
}
|
1
themes/duckquill
Submodul
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 66d2504350d37921be8a31c9cb24c151360fbd6e
|