From 117f7bbc15ceeebc566e88dd9c6007986638e97c Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Mar 2026 17:06:15 -0800 Subject: add syntax file; style.css is good? Add font --- blog/index.org | 1 - config/emacs.org | 7 + flake.lock | 17 + flake.nix | 19 +- img/relativity2.jpg~ | Bin 127432 -> 0 bytes img/topology.svg | 1 - journal/index.org | 1 - nix | 2 +- style.css | 581 +++--- syntax.css | 4777 ++++++++++++++++++++++++++++++++++++++++++++++++++ 10 files changed, 5116 insertions(+), 290 deletions(-) delete mode 100644 img/relativity2.jpg~ delete mode 100644 img/topology.svg create mode 100644 syntax.css diff --git a/blog/index.org b/blog/index.org index afb2f4b..5ffe6bc 100644 --- a/blog/index.org +++ b/blog/index.org @@ -6,7 +6,6 @@ #+html_head: #+language: en #+OPTIONS: broken-links:t -#+html_head: * Why? I want a place where I can write long form essays about subjects diff --git a/config/emacs.org b/config/emacs.org index 5bf4838..f54e70e 100644 --- a/config/emacs.org +++ b/config/emacs.org @@ -194,6 +194,7 @@ This is my org mode configuration, which also configures latex. (org-babel-do-load-languages 'org-babel-load-languages '((shell . t) (python . t) + (nix . t) (latex . t)))) #+end_src As you can see, I only have one real entry in config here (I don't count requires even though @@ -726,6 +727,12 @@ to Chromium if I have to: (eww-search-prefix "https://google.com/search?q=" "Google prefix") :hook ((eww-mode . (lambda () (local-set-key (kbd "y Y") #'eww-copy-page-url))))) #+end_src +** Nix Mode +Load Nix mode so our exported website has syntax highlighting for Nix blocks. +#+begin_src emacs-lisp :tangle ../nix/init.el + (use-package nix-mode + :mode "\\.nix\\'") +#+end_src ** Org Roam For all my mathematics and programming notes: #+begin_src emacs-lisp :tangle ../nix/init.el diff --git a/flake.lock b/flake.lock index 9610798..3b6f561 100644 --- a/flake.lock +++ b/flake.lock @@ -205,6 +205,22 @@ "type": "github" } }, + "garamond": { + "flake": false, + "locked": { + "lastModified": 1621706236, + "narHash": "sha256-Axj0ofJygjMhKS0ptCh0V2OTUKthU61nAM3wgWbgb2c=", + "owner": "fontalternative", + "repo": "cormorant-garamond", + "rev": "c9f4a4de33febb7c5e90dda5bafbfd384f351f86", + "type": "github" + }, + "original": { + "owner": "fontalternative", + "repo": "cormorant-garamond", + "type": "github" + } + }, "git-hooks": { "inputs": { "flake-compat": "flake-compat", @@ -709,6 +725,7 @@ }, "root": { "inputs": { + "garamond": "garamond", "git-hooks": "git-hooks", "nixmacs": "nixmacs", "nixpkgs": "nixpkgs_6", diff --git a/flake.nix b/flake.nix index e9b26af..af8b06b 100644 --- a/flake.nix +++ b/flake.nix @@ -14,9 +14,13 @@ publish-org-roam-ui = { url = "git://nullring.xyz/publish-org-roam-ui.git"; }; + garamond = { + url = "github:fontalternative/cormorant-garamond"; + flake = false; + }; }; - outputs = { nixpkgs, git-hooks, nixmacs, self, publish-org-roam-ui, ... }: + outputs = { nixpkgs, git-hooks, nixmacs, self, publish-org-roam-ui, garamond, ... }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; @@ -36,7 +40,8 @@ installer-iso = installer.config.system.build.isoImage; spontaneityHost = spontaneity.config.monorepo.vars.orgHost; - spontaneityUser = spontaneity.config.monorepo.vars.userName; + + topology = nixmacs.topology.x86_64-linux.config.output; pre-commit-check = git-hooks.lib.${system}.run { src = ./.; @@ -185,21 +190,23 @@ emacs -q --batch \ --eval '(setq org-export-with-latex t)' \ --eval '(setq org-confirm-babel-evaluate nil)' \ --eval '(setq load-prefer-newer t)' \ - --eval '(setq custom-safe-themes t)' \ -l ${nixmacs}/init.el \ + --eval '(setq custom-safe-themes t)' \ --eval "(org-babel-do-load-languages 'org-babel-load-languages '((latex . t)))" \ --eval '(setq org-roam-directory (expand-file-name "mindmap" (expand-file-name "~/monorepo")))' \ --eval '(setq org-id-track-globally t)' \ --eval '(org-roam-db-sync)' \ --eval '(setq term-file-prefix nil)' \ --eval '(load-theme (quote doom-rouge) t)' \ - --eval '(setq custom-safe-themes t)' \ --eval '(force-mode-line-update)' \ --eval '(setq org-html-link-use-abs-url nil)' \ --eval '(setq default-directory (expand-file-name "~/monorepo"))' \ --eval '(setq org-html-link-use-abs-url nil)' \ --eval '(setq org-html-link-org-files-as-html t)' \ - --eval '(add-hook (quote org-publish-after-export-hook) (lambda (file) (font-lock-ensure)))' \ + --eval '(require (quote htmlize))' \ + --eval '(require (quote nix-mode))' \ + --eval '(setq org-html-htmlize-output-type (quote css))' \ + --eval '(setq org-html-head-extra "")' \ --eval '(org-publish-all t)' \ --eval '(org-publish-all nil)' || (echo "FAIL:" && cat /build/*.log && exit 1) echo "Setting up Graph View..." @@ -214,8 +221,10 @@ mkdir -p $out/fonts cp -L ${pkgs.lora}/share/fonts/truetype/*.ttf $out/fonts/ cp -L ${pkgs.inconsolata}/share/fonts/truetype/inconsolata/*.ttf $out/fonts +cp ${garamond}/ttf/CormorantGaramond-Medium.ttf $out/fonts/ cp -r $HOME/website_html/. $out/ +cp ${topology}/main.svg $out/img/topology.svg cp ${installer-iso}/iso/*.iso $out/installer.iso cd $out sha256sum installer.iso > installer.iso.sha256 diff --git a/img/relativity2.jpg~ b/img/relativity2.jpg~ deleted file mode 100644 index e23e252..0000000 Binary files a/img/relativity2.jpg~ and /dev/null differ diff --git a/img/topology.svg b/img/topology.svg deleted file mode 100644 index 691ff39..0000000 --- a/img/topology.svg +++ /dev/null @@ -1 +0,0 @@ -Networks OverviewHome NetworkCIDRv4192.168.1.1/24Remote NetworkCIDRv4144.202.27.169/32Services OverviewOllamaaffinityI2PspontaneityNGINXspontaneityaffinitylanOllamalancontinuitylanlaninstallerlanlanspontaneitywanI2PNGINXwan diff --git a/journal/index.org b/journal/index.org index 2b13ba2..10ccd31 100644 --- a/journal/index.org +++ b/journal/index.org @@ -12,7 +12,6 @@ #+html_head: #+html_head: #+html_head: -#+html_head: * Introduction This is my journal. It's basically my everyday life, or at least the part that I can make public (not many personal details although there will be some). I will also be posting some TODOs that diff --git a/nix b/nix index d1412b3..4bd24f0 160000 --- a/nix +++ b/nix @@ -1 +1 @@ -Subproject commit d1412b325e95cea7d820c89b561d43a291203e8e +Subproject commit 4bd24f067dab059c5754fc46f496da450f2208d3 diff --git a/style.css b/style.css index b6cd6b4..e527d7a 100644 --- a/style.css +++ b/style.css @@ -12,23 +12,34 @@ src: url('./fonts/Inconsolata-Regular.ttf') format('truetype'); } +@font-face { + font-family: 'CormorantGaramond'; + font-style: normal; + font-weight: 600; + src: url('./fonts/CormorantGaramond-Medium.ttf') format('truetype'); +} + :root { --bg-main: #FBF8F1; --text-main: #4A3F35; --toc-bg: #EAE3D2; --toc-text: #4A3F35; - --quote-accent: #D4A373; + --accent: #D4A373; --link-color: #8C6239; + + --code-bg: #1e1e2e; + --code-text: #cdd6f4; + --code-radius: 6px; + + --font-serif: "Lora", serif; + --font-mono: "Inconsolata", monospace; + --font-header: "CormorantGaramond"; } -/* @media (prefers-color-scheme: dark) { */ -/* :root { */ -/* --bg-main: #1e1e2e; */ -/* --text-main: #cdd6f4; */ -/* --toc-bg: #11111b; */ -/* --quote-accent: #f5c2e7; */ -/* } */ -/* } */ +::selection { + color: white; + background: #ff4081; +} body { background: @@ -41,9 +52,10 @@ body { font-size: 16px; color: var(--text-main); padding: 0 10px; + /* fonts */ font-size: 18px; - font-family: "Lora"; + font-family: var(--font-serif); font-weight: 500; font-variant-ligatures: common-ligatures; -webkit-font-smoothing: antialiased; @@ -52,6 +64,12 @@ body { margin: 20px auto; font-size: 20px; } + + @media (max-width: 768px) { + max-width: 100%; + padding: 0 15px; + box-sizing: border-box; + } } input { @@ -66,96 +84,59 @@ input { -webkit-transition: 0.5s; transition: 0.5s; outline: none; - &:focus { - border: 2px solid var(--text-main); - } -} - -.button { - background-color: var(--bg-main); - border: none; - color: black; - padding: 6px 14px; - text-align: center; - text-decoration: none; - display: inline-block; - font-size: 16px; - margin: 4px 2px; - transition-duration: 0.4s; - cursor: pointer; - border: 2px solid var(--text-main); - border-radius: 6px; - &:hover { - background-color: var(--text-main); - color: white; - } -} - -.isa_info, -.isa_success, -.isa_warning, -.isa_error { - width: 90%; - margin: 10px 0px; - padding: 12px; -} -.isa_info { - color: #00529b; - background-color: #bde5f8; -} -.isa_success { - color: #4f8a10; - background-color: #dff2bf; + &:focus { border: 2px solid var(--text-main); } } -.isa_warning { - color: #9f6000; - background-color: #feefb3; +figure { + margin: 2rem auto; + text-align: center; } -.isa_error { - color: #d8000c; - background-color: #ffd2d2; +figcaption { + font-size: 0.9rem; + color: color-mix(in srgb, var(--text-main) 80%, gray); + margin-top: 0.5rem; } -h1, -h2, -h3 { +h1, h2, h3 { line-height: 1.2; - font-family: "Lora"; -} - -h1 { - @media (max-width: 1250px) { - font-size: 20px; - } -} - -h2 { - @media (max-width: 1250px) { - font-size: 18px; - } + font-family: var(--font-serif); } h1, h2 { - border-bottom: 1px solid var(--border-color); /* Uses your existing #dabebe */ + border-bottom: 1px solid var(--border-color); padding-bottom: 8px; margin-top: 2.5rem; letter-spacing: -0.01em; position: relative; } +p, ul, ol { + margin-top: 1rem; + margin-bottom: 1rem; +} + h1 { - font-size: 2.1rem; + font-size: 2.3rem; margin-top: 3rem; margin-bottom: 1rem; + font-family: var(--font-header); + font-weight: 600; + letter-spacing: 0; + line-height: 1.3; + -webkit-font-smoothing: antialiased; + + @media (max-width: 1250px) { font-size: 1.8rem; } } h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 0.6rem; + + @media (max-width: 1250px) { font-size: 18px; } + @media (max-width: 768px) { font-size: 1.5rem; } } h3 { @@ -164,17 +145,11 @@ h3 { margin-bottom: 0.4rem; } -p { - margin: 1.2rem 0; -} - -p, ul, ol { - margin-top: 1rem; - margin-bottom: 1rem; -} - -li { - margin: 0.3rem 0; +img, blockquote { + @media (max-width: 768px) { + max-width: 100%; + box-sizing: border-box; + } } img { @@ -186,36 +161,40 @@ img { display: block; } -.org-svg { - width: 100%; - max-width: none; -} +blockquote { + width: 80%; + margin: 40px auto; + font-style: italic; + color: var(--text-main); + padding: 1.5em 30px 1.5em 60px; + border-left: 4px solid var(--accent); + border-radius: 0 8px 8px 0; + line-height: 1.6; + position: relative; + background: color-mix(in srgb, var(--accent) 15%, transparent); -mjx-container[jax="CHTML"][display="true"] { - text-align: left !important; - background: rgba(212, 163, 115, 0.05); - padding: 1.5rem; - border-left: 2px solid var(--quote-accent); - margin: 2rem 0 !important; - overflow-x: auto; - - /* Hide scrollbar for Firefox */ - scrollbar-width: none; - /* Hide scrollbar for IE/Edge */ - -ms-overflow-style: none; -} + &::before { + font-family: var(--font-serif), serif; + content: "\201C"; + color: var(--accent); + font-size: 5em; + position: absolute; + left: 10px; + top: -20px; + opacity: 0.5; + } + + &::after { content: ''; } -/* Hide scrollbar for Chrome, Safari and Opera */ -mjx-container[jax="CHTML"][display="true"]::-webkit-scrollbar { - display: none; + @media (max-width: 768px) { + padding: 1em 15px 1em 40px; + width: 100%; + } } -/* Inline MathJax (Inside paragraphs) */ -mjx-container[jax="CHTML"]:not([display="true"]) { - padding: 0; - margin: 0; - background: transparent; - border: none; +pre { + font-family: var(--font-mono), monospace; + &.src-stem::before { content: "Stem"; } } a { @@ -232,139 +211,130 @@ a { } } -::selection { - color: white; - background: #ff4081; -} - -#table-of-contents { - height: 100vh; - width: 250px; - position: fixed; - z-index: 10; - top: 0; - left: 0; - padding-top: 0; - background: var(--toc-bg); - border-right: 1px solid var(--quote-accent); - overflow-y: auto; - overflow-x: hidden; - scrollbar-width: none; - - &::-webkit-scrollbar { display: none; } - - h2 { - display: none !important; - } +p { margin: 1.2rem 0; } - /* 2. Insert the aligned futuristic header */ - &::before { - content: "NAVIGATION"; - display: block; - /* Padding math: 19px left matches the link text exactly */ - padding: 24px 16px 12px 19px; - font-family: "Inconsolata"; - font-size: 11px; - font-weight: bold; - letter-spacing: 2px; - color: var(--text-main); - border-bottom: 1px solid rgba(212, 163, 115, 0.2); - margin-bottom: 10px; - } +li { margin: 0.3rem 0; } - ul { - list-style-type: none; - padding-left: 0; - margin: 0; +.org-svg { + width: 100%; + max-width: none; +} - a { +.org-src-container { + position: relative; + margin: 1.2em 0; + + pre.src { + position: relative !important; + overflow: visible !important; + background: var(--code-bg); + border-radius: 6px; + margin: 0 !important; + padding: 0 !important; + border: none !important; + + & > code { display: block; - width: 218px; - padding: 10px 16px; - font-size: 13px; - font-family: "Inconsolata"; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); - border-left: 3px solid transparent; - - &, &:visited { - color: var(--text-main); - text-decoration: none; - } + overflow-x: auto; + padding: 1.5rem 1rem 1rem 1rem; + white-space: pre; + scrollbar-width: none; + -ms-overflow-style: none; - &:hover { - background-color: var(--text-main); - color: var(--bg-main); - padding-left: 22px; - border-left: 3px solid var(--quote-accent); - } + &::-webkit-scrollbar { display: none; } } - ul { - a { - padding-left: 32px; - font-size: 12px; - opacity: 0.8; - width: 202px; /* Adjusted width for nesting */ - - &:hover { - padding-left: 38px; - } - } + &::before { + content: attr(data-language); + display: block !important; + position: absolute !important; + top: 0.5rem; + right: 0.5rem; + z-index: 20; + + font-family: var(--font-mono), monospace; + font-size: 0.7rem; + color: var(--code-text); + background: var(--code-bg); + padding: 2px 8px; + border-radius: 4px; + opacity: 0.6; + pointer-events: none; } } - - @media (max-width: 1250px) { - display: none; - } } .content { - margin-left: 160px; + margin-left: 280px; padding: 0px 10px; - @media (max-width: 1250px) { - margin-left: 0; - } + + @media (max-width: 1250px) { margin-left: 0; } } -.src, -.example { - background: #1e1e2e; - color: #cdd6f4; - padding: 1rem; - border-radius: 6px; - overflow-x: auto; - font-size: 0.9rem; - box-shadow: none; - +.src, .example, mjx-container[jax="CHTML"][display="true"] { scrollbar-width: none; -ms-overflow-style: none; -} + overflow-x: auto; -.src::-webkit-scrollbar, -.example::-webkit-scrollbar { - display: none; + @media (max-width: 768px) { + max-width: 100%; + box-sizing: border-box; + width: 100%; + } } -#postamble { - text-align: center; +mjx-container[jax="CHTML"] { + &[display="true"] { + background: rgba(212, 163, 115, 0.05); + padding: 1.5rem; + text-align: left !important; + border-left: 2px solid var(--accent); + margin: 2rem 0 !important; + + &::-webkit-scrollbar { display: none; } + } + + &:not([display="true"]) { + padding: 0; + margin: 0; + background: transparent; + border: none; + } } -pre { - font-family: "Inconsolata", monospace; - &.src-stem::before { - content: "Stem"; +.src, .example { + position: relative; + background: var(--code-bg); + color: var(--code-text); + padding: 1rem; + border-radius: 6px; + font-size: 0.9rem; + box-shadow: none; + + &::before { + position: absolute; + top: 0.5rem; + right: 0.5rem; + float: right; + z-index: 10; + font-family: var(--font-mono), monospace; + font-size: 0.7rem; + opacity: 0.5; + pointer-events: none; + + background: var(--code-bg); + padding: 2px 4px; } + + &::-webkit-scrollbar { display: none; } } .theorem, .proof { display: block; margin-left: 10px; font-style: normal; - background: color-mix(in srgb, var(--quote-accent) 8%, transparent); - border-left: 3px solid var(--quote-accent); + background: color-mix(in srgb, var(--accent) 8%, transparent); + border-left: 3px solid var(--accent); padding: 1rem 1.3rem; margin: 2rem 0; &::before { @@ -375,22 +345,18 @@ pre { .theorem { margin-bottom:20px; - &::before { - content:"Theorem.\00a0\00a0"; - } + &::before { content:"Theorem.\00a0\00a0"; } } .proof { margin-bottom:30px; - &::before { - content:'Proof.\00a0\00a0'; - } - &::after { content: "\25FC"; float: right; } + + &::before { content:'Proof.\00a0\00a0'; } } .links-page > ul { @@ -399,41 +365,10 @@ pre { -moz-columns: 2; } -blockquote { - width: 80%; - margin: 40px auto; - font-style: italic; - color: var(--text-main); - padding: 1.5em 30px 1.5em 60px; - border-left: 4px solid var(--quote-accent); - border-radius: 0 8px 8px 0; - line-height: 1.6; - position: relative; - background: color-mix(in srgb, var(--quote-accent) 15%, transparent); - - &::before { - font-family: "Lora", serif; - content: "\201C"; - color: var(--quote-accent); - font-size: 5em; - position: absolute; - left: 10px; - top: -20px; - opacity: 0.5; - } - - &::after { content: ''; } -} - -figure { - margin: 2rem auto; - text-align: center; -} - -figcaption { - font-size: 0.9rem; - color: color-mix(in srgb, var(--text-main) 80%, gray); - margin-top: 0.5rem; +header, .title + p, .subtitle + p { + margin-bottom: 3rem; + border-bottom: 1px double var(--accent); + padding-bottom: 1rem; } .title { @@ -448,7 +383,7 @@ figcaption { .author, .date { display: inline; - font-family: "Lora"; + font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: color-mix(in srgb, var(--text-main) 70%, gray); @@ -457,7 +392,7 @@ figcaption { .author { &::before { content: "by "; - font-family: "Inconsolata"; + font-family: var(--font-mono); font-style: normal; font-weight: bold; text-transform: uppercase; @@ -465,40 +400,124 @@ figcaption { letter-spacing: 1px; margin-right: 4px; } + &:not(:last-child)::after { content: ", "; font-style: normal; } } -header, .title + p, .subtitle + p { - margin-bottom: 3rem; - border-bottom: 1px double var(--quote-accent); - padding-bottom: 1rem; +.button { + background-color: var(--bg-main); + border: none; + color: black; + padding: 6px 14px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + transition-duration: 0.4s; + cursor: pointer; + border: 2px solid var(--text-main); + border-radius: 6px; + &:hover { + background-color: var(--text-main); + color: white; + } } -@media (max-width: 768px) { - body { - max-width: 100%; - padding: 0 15px; - box-sizing: border-box; - } +.isa_info, .isa_success, .isa_warning, .isa_error { + width: 90%; + margin: 10px 0px; + padding: 12px; +} - h1 { font-size: 2rem; } - h2 { font-size: 1.5rem; } +.isa_info { + color: #00529b; + background-color: #bde5f8; +} - img, blockquote, .src, .example, mjx-container[jax="CHTML"][display="true"] { - max-width: 100%; - box-sizing: border-box; - } +.isa_success { + color: #4f8a10; + background-color: #dff2bf; +} - blockquote { - padding: 1em 15px 1em 40px; - width: 100%; +.isa_warning { + color: #9f6000; + background-color: #feefb3; +} + +.isa_error { + color: #d8000c; + background-color: #ffd2d2; +} + +#table-of-contents { + height: 100vh; + width: 250px; + position: fixed; + z-index: 10; + top: 0; + left: 0; + padding-top: 0; + background: var(--toc-bg); + border-right: 1px solid var(--accent); + overflow-y: auto; + overflow-x: hidden; + scrollbar-width: none; + + &::before { + content: "NAVIGATION"; + display: block; + padding: 24px 16px 12px 19px; + font-family: var(--font-mono); + font-size: 11px; + font-weight: bold; + letter-spacing: 2px; + color: var(--text-main); + border-bottom: 1px solid rgba(212, 163, 115, 0.2); + margin-bottom: 10px; } - .src, .example, mjx-container[jax="CHTML"][display="true"] { - width: 100%; - overflow-x: auto; + ul { + list-style-type: none; + padding-left: 0; + margin: 0; + + a { + display: block; + width: 218px; + padding: 10px 16px; + font-size: 13px; + font-family: var(--font-mono); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); + border-left: 3px solid transparent; + padding-left: 32px; + opacity: 0.8; + + &, &:visited { + color: var(--text-main); + text-decoration: none; + } + + &:hover { + background-color: var(--text-main); + color: var(--bg-main); + padding-left: 22px; + border-left: 3px solid var(--accent); + } + } } + + h2 { display: none !important; } + + &::-webkit-scrollbar { display: none; } + + @media (max-width: 1250px) { display: none; } } + +#postamble { text-align: center; } diff --git a/syntax.css b/syntax.css new file mode 100644 index 0000000..6af8637 --- /dev/null +++ b/syntax.css @@ -0,0 +1,4777 @@ +.org-abbrev-table-name { + /* abbrev-table-name */ + color: #F9B5AC; +} +.org-all-the-icons-blue { + /* all-the-icons-blue */ + color: #6e94b9; +} +.org-all-the-icons-blue-alt { + /* all-the-icons-blue-alt */ + color: #7ea9a9; +} +.org-all-the-icons-cyan { + /* all-the-icons-cyan */ + color: #88C0D0; +} +.org-all-the-icons-cyan-alt { + /* all-the-icons-cyan-alt */ + color: #88C0D0; +} +.org-all-the-icons-dblue { + /* all-the-icons-dblue */ + color: #1E6378; +} +.org-all-the-icons-dcyan { + /* all-the-icons-dcyan */ + color: #507681; +} +.org-all-the-icons-dgreen { + /* all-the-icons-dgreen */ + color: #727b6b; +} +.org-all-the-icons-dmaroon { + /* all-the-icons-dmaroon */ + color: #7b617b; +} +.org-all-the-icons-dorange { + /* all-the-icons-dorange */ + color: #a3856b; +} +.org-all-the-icons-dpink { + /* all-the-icons-dpink */ + color: #ce8d91; +} +.org-all-the-icons-dpurple { + /* all-the-icons-dpurple */ + color: #415979; +} +.org-all-the-icons-dred { + /* all-the-icons-dred */ + color: #8a5458; +} +.org-all-the-icons-dsilver { + /* all-the-icons-dsilver */ + color: #73808a; +} +.org-all-the-icons-dyellow { + /* all-the-icons-dyellow */ + color: #ac9e7a; +} +.org-all-the-icons-green { + /* all-the-icons-green */ + color: #A3B09A; +} +.org-all-the-icons-lblue { + /* all-the-icons-lblue */ + color: #99b4ce; +} +.org-all-the-icons-lcyan { + /* all-the-icons-lcyan */ + color: #abd2de; +} +.org-all-the-icons-lgreen { + /* all-the-icons-lgreen */ + color: #bec7b8; +} +.org-all-the-icons-lmaroon { + /* all-the-icons-lmaroon */ + color: #c8adc8; +} +.org-all-the-icons-lorange { + /* all-the-icons-lorange */ + color: #f0d1b8; +} +.org-all-the-icons-lpink { + /* all-the-icons-lpink */ + color: #e5c2c4; +} +.org-all-the-icons-lpurple { + /* all-the-icons-lpurple */ + color: #8da6c6; +} +.org-all-the-icons-lred { + /* all-the-icons-lred */ + color: #d7a1a4; +} +.org-all-the-icons-lsilver { + /* all-the-icons-lsilver */ + color: #d0d4d8; +} +.org-all-the-icons-lyellow { + /* all-the-icons-lyellow */ + color: #f9ebc7; +} +.org-all-the-icons-maroon { + /* all-the-icons-maroon */ + color: #b18bb1; +} +.org-all-the-icons-orange { + /* all-the-icons-orange */ + color: #eabe9a; +} +.org-all-the-icons-pink { + /* all-the-icons-pink */ + color: #d9a7ab; +} +.org-all-the-icons-purple { + /* all-the-icons-purple */ + color: #5D80AE; +} +.org-all-the-icons-purple-alt { + /* all-the-icons-purple-alt */ + color: #627484; +} +.org-all-the-icons-red { + /* all-the-icons-red */ + color: #c6797e; +} +.org-all-the-icons-red-alt { + /* all-the-icons-red-alt */ + color: #72737d; +} +.org-all-the-icons-silver { + /* all-the-icons-silver */ + color: #a9b1b7; +} +.org-all-the-icons-yellow { + /* all-the-icons-yellow */ + color: #F7E3AF; +} +.org-ansi-color-black { + /* ansi-color-black */ + color: #172030; + background-color: #172030; +} +.org-ansi-color-blue { + /* ansi-color-blue */ + color: #6e94b9; + background-color: #6e94b9; +} +.org-ansi-color-bold { + /* ansi-color-bold */ + font-weight: bold; +} +.org-ansi-color-bright-black { + /* ansi-color-bright-black */ + color: #B16E75; + background-color: #B16E75; +} +.org-ansi-color-bright-blue { + /* ansi-color-bright-blue */ + color: #83a4c3; + background-color: #83a4c3; +} +.org-ansi-color-bright-cyan { + /* ansi-color-bright-cyan */ + color: #99c9d7; + background-color: #99c9d7; +} +.org-ansi-color-bright-green { + /* ansi-color-bright-green */ + color: #b0bba9; + background-color: #b0bba9; +} +.org-ansi-color-bright-magenta { + /* ansi-color-bright-magenta */ + color: #bc9cbc; + background-color: #bc9cbc; +} +.org-ansi-color-bright-red { + /* ansi-color-bright-red */ + color: #ce8d91; + background-color: #ce8d91; +} +.org-ansi-color-bright-white { + /* ansi-color-bright-white */ + color: #F0F4FC; + background-color: #F0F4FC; +} +.org-ansi-color-bright-yellow { + /* ansi-color-bright-yellow */ + color: #f8e7bb; + background-color: #f8e7bb; +} +.org-ansi-color-cyan { + /* ansi-color-cyan */ + color: #88C0D0; + background-color: #88C0D0; +} +.org-ansi-color-green { + /* ansi-color-green */ + color: #A3B09A; + background-color: #A3B09A; +} +.org-ansi-color-italic { + /* ansi-color-italic */ + font-style: italic; +} +.org-ansi-color-magenta { + /* ansi-color-magenta */ + color: #b18bb1; + background-color: #b18bb1; +} +.org-ansi-color-red { + /* ansi-color-red */ + color: #c6797e; + background-color: #c6797e; +} +.org-ansi-color-underline { + /* ansi-color-underline */ + text-decoration: underline; +} +.org-ansi-color-white { + /* ansi-color-white */ + color: #FAFFF6; + background-color: #FAFFF6; +} +.org-ansi-color-yellow { + /* ansi-color-yellow */ + color: #F7E3AF; + background-color: #F7E3AF; +} +.org-battery-load-critical { + /* battery-load-critical */ + color: #c6797e; +} +.org-battery-load-low { + /* battery-load-low */ + color: #F7E3AF; +} +.org-blink-matching-paren-offscreen { + /* blink-matching-paren-offscreen */ + color: #00ff00; +} +.org-bold { + /* bold */ + font-weight: bold; +} +.org-bookmark { + /* bookmark-face */ + background-color: #262736; +} +.org-bookmark-menu-bookmark { + /* bookmark-menu-bookmark */ + font-weight: bold; +} +.org-border { +} +.org-bracket { + /* font-lock-bracket-face */ + color: #e7e2e4; +} +.org-browse-url-button { + /* browse-url-button */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-buffer-menu-buffer { + /* buffer-menu-buffer */ + font-weight: bold; +} +.org-builtin { + /* font-lock-builtin-face */ + color: #DB6E8F; +} +.org-button { + /* button */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-c-annotation { + /* c-annotation-face */ + color: #c6797e; +} +.org-calendar-month-header { + /* calendar-month-header */ + color: #F9B5AC; +} +.org-calendar-today { + /* calendar-today */ + text-decoration: underline; +} +.org-calendar-weekday-header { + /* calendar-weekday-header */ + color: #c6797e; +} +.org-calendar-weekend-header { + /* calendar-weekend-header */ + color: #64727d; + font-style: italic; +} +.org-centaur-tabs--doom-rouge-bar { + /* centaur-tabs-doom-rouge-bar-face */ + color: #101828; + background-color: #101828; +} +.org-centaur-tabs-active-bar { + /* centaur-tabs-active-bar-face */ + background-color: #172030; +} +.org-centaur-tabs-close-mouse { + /* centaur-tabs-close-mouse-face */ + text-decoration: underline; +} +.org-centaur-tabs-close-selected { + /* centaur-tabs-close-selected */ + color: #F0F4FC; + background-color: #B16E75; +} +.org-centaur-tabs-close-unselected { + /* centaur-tabs-close-unselected */ + color: #A7ACB9; + background-color: #101828; +} +.org-centaur-tabs-default { + /* centaur-tabs-default */ + color: #101828; + background-color: #101828; +} +.org-centaur-tabs-dim-buffer { + /* centaur-tabs-dim-buffer-face */ + color: #666666; +} +.org-centaur-tabs-jump-identifier-selected { + /* centaur-tabs-jump-identifier-selected */ + color: #F0F4FC; + background-color: #B16E75; +} +.org-centaur-tabs-jump-identifier-unselected { + /* centaur-tabs-jump-identifier-unselected */ + color: #F0F4FC; + background-color: #101828; +} +.org-centaur-tabs-modified-marker-selected { + /* centaur-tabs-modified-marker-selected */ + color: #F0F4FC; + background-color: #B16E75; +} +.org-centaur-tabs-modified-marker-unselected { + /* centaur-tabs-modified-marker-unselected */ + color: #F0F4FC; + background-color: #101828; +} +.org-centaur-tabs-name-mouse { +} +.org-centaur-tabs-selected { + /* centaur-tabs-selected */ + color: #F0F4FC; + background-color: #B16E75; +} +.org-centaur-tabs-selected-modified { + /* centaur-tabs-selected-modified */ + color: #F0F4FC; + background-color: #B16E75; +} +.org-centaur-tabs-unselected { + /* centaur-tabs-unselected */ + color: #A7ACB9; + background-color: #101828; +} +.org-centaur-tabs-unselected-modified { + /* centaur-tabs-unselected-modified */ + color: #F0F4FC; + background-color: #172030; +} +.org-change-log-acknowledgment { + /* change-log-acknowledgment */ + color: #64727d; + font-style: italic; +} +.org-change-log-conditionals { + /* change-log-conditionals */ + color: #c6797e; +} +.org-change-log-date { + /* change-log-date */ + color: #A3B09A; +} +.org-change-log-email { + /* change-log-email */ + color: #c6797e; +} +.org-change-log-file { + /* change-log-file */ + color: #F9B5AC; +} +.org-change-log-function { + /* change-log-function */ + color: #c6797e; +} +.org-change-log-list { + /* change-log-list */ + color: #b18bb1; + font-style: italic; +} +.org-change-log-name { + /* change-log-name */ + color: #c6797e; +} +.org-child-frame-border { +} +.org-comint-highlight-input { + /* comint-highlight-input */ + font-weight: bold; +} +.org-comint-highlight-prompt { + /* comint-highlight-prompt */ + color: #B16E75; +} +.org-comment { + /* font-lock-comment-face */ + color: #64727d; + font-style: italic; +} +.org-comment-delimiter { + /* font-lock-comment-delimiter-face */ + color: #64727d; + font-style: italic; +} +.org-company-echo { +} +.org-company-echo-common { + /* company-echo-common */ + color: #ff3030; +} +.org-company-preview { + /* company-preview */ + color: #64727d; +} +.org-company-preview-common { + /* company-preview-common */ + color: #B16E75; + background-color: #1F2A3F; +} +.org-company-preview-search { + /* company-preview-search */ + color: #172030; + background-color: #B16E75; + font-weight: bold; +} +.org-company-template-field { + /* company-template-field */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} +.org-company-tooltip { + /* company-tooltip */ + color: #A7ACB9; + background-color: #1F2A3F; +} +.org-company-tooltip-annotation { + /* company-tooltip-annotation */ + color: #5D80AE; +} +.org-company-tooltip-annotation-selection { + /* company-tooltip-annotation-selection */ + color: #5D80AE; +} +.org-company-tooltip-common { + /* company-tooltip-common */ + color: #B16E75; + font-weight: bold; +} +.org-company-tooltip-common-selection { + /* company-tooltip-common-selection */ + color: #B16E75; + font-weight: bold; +} +.org-company-tooltip-deprecated { + /* company-tooltip-deprecated */ + text-decoration: line-through; +} +.org-company-tooltip-mouse { + /* company-tooltip-mouse */ + color: #172030; + background-color: #b18bb1; +} +.org-company-tooltip-quick-access { + /* company-tooltip-quick-access */ + color: #5D80AE; +} +.org-company-tooltip-quick-access-selection { + /* company-tooltip-quick-access-selection */ + color: #5D80AE; +} +.org-company-tooltip-scrollbar-thumb { + /* company-tooltip-scrollbar-thumb */ + background-color: #545454; +} +.org-company-tooltip-scrollbar-track { + /* company-tooltip-scrollbar-track */ + background-color: #474747; +} +.org-company-tooltip-search { + /* company-tooltip-search */ + color: #172030; + background-color: #B16E75; + font-weight: bold; +} +.org-company-tooltip-search-selection { + /* company-tooltip-search-selection */ + background-color: #454a52; +} +.org-company-tooltip-selection { + /* company-tooltip-selection */ + background-color: #5D636E; + font-weight: bold; +} +.org-compilation-column-number { + /* compilation-column-number */ + color: #64727d; + font-style: italic; +} +.org-compilation-error { + /* compilation-error */ + color: #c6797e; + font-weight: bold; +} +.org-compilation-info { + /* compilation-info */ + color: #A3B09A; +} +.org-compilation-line-number { + /* compilation-line-number */ + color: #B16E75; +} +.org-compilation-mode-line-exit { + /* compilation-mode-line-exit */ + color: #A3B09A; +} +.org-compilation-mode-line-fail { + /* compilation-mode-line-fail */ + color: #c6797e; + font-weight: bold; +} +.org-compilation-mode-line-run { + /* compilation-mode-line-run */ + color: #F7E3AF; + font-style: italic; +} +.org-compilation-warning { + /* compilation-warning */ + color: #F7E3AF; + font-style: italic; +} +.org-completions-common-part { + /* completions-common-part */ + color: #add8e6; +} +.org-completions-first-difference { + /* completions-first-difference */ + font-weight: bold; +} +.org-completions-group-separator { + /* completions-group-separator */ + color: #64727d; + text-decoration: line-through; +} +.org-completions-group-title { + /* completions-group-title */ + color: #64727d; + font-style: italic; +} +.org-completions-highlight { + /* completions-highlight */ + color: #070A0E; + background-color: #B16E75; +} +.org-confusingly-reordered { + /* confusingly-reordered */ + text-decoration: underline; +} +.org-constant { + /* font-lock-constant-face */ + color: #c6797e; +} +.org-counsel--mark-ring-highlight { + /* counsel-mark-ring-highlight */ + color: #070A0E; + background-color: #B16E75; +} +.org-counsel-active-mode { + /* counsel-active-mode */ + color: #DB6E8F; +} +.org-counsel-application-name { + /* counsel-application-name */ + color: #DB6E8F; +} +.org-counsel-evil-register { + /* counsel-evil-register-face */ + color: #6e94b9; + font-weight: bold; +} +.org-counsel-key-binding { + /* counsel-key-binding */ + color: #b18bb1; + font-style: italic; +} +.org-counsel-outline-1 { + /* counsel-outline-1 */ + color: #6e94b9; + font-weight: bold; +} +.org-counsel-outline-2 { + /* counsel-outline-2 */ + color: #b18bb1; + font-weight: bold; +} +.org-counsel-outline-3 { + /* counsel-outline-3 */ + color: #5D80AE; + font-weight: bold; +} +.org-counsel-outline-4 { + /* counsel-outline-4 */ + color: #92aeca; + font-weight: bold; +} +.org-counsel-outline-5 { + /* counsel-outline-5 */ + color: #c4a8c4; + font-weight: bold; +} +.org-counsel-outline-6 { + /* counsel-outline-6 */ + color: #b6c9dc; + font-weight: bold; +} +.org-counsel-outline-7 { + /* counsel-outline-7 */ + color: #d8c4d8; + font-weight: bold; +} +.org-counsel-outline-8 { + /* counsel-outline-8 */ + color: #e2e9f1; + font-weight: bold; +} +.org-counsel-outline-default { + /* counsel-outline-default */ + color: #B16E75; +} +.org-counsel-variable-documentation { + /* counsel-variable-documentation */ + color: #64727d; + font-style: italic; +} +.org-cua-global-mark { + /* cua-global-mark */ + color: #000000; + background-color: #ffff00; +} +.org-cua-rectangle { + /* cua-rectangle */ + color: #ffffff; + background-color: #b03060; +} +.org-cua-rectangle-noselect { + /* cua-rectangle-noselect */ + color: #ffffff; + background-color: #696969; +} +.org-cursor { + /* cursor */ + background-color: #B16E75; +} +.org-dashboard-banner-logo-title { + /* dashboard-banner-logo-title */ + color: #FAFFF6; + background-color: #172030; +} +.org-dashboard-footer { + /* dashboard-footer-face */ + color: #A3B09A; + font-style: italic; +} +.org-dashboard-footer-icon { + /* dashboard-footer-icon-face */ + color: #A3B09A; + font-style: italic; +} +.org-dashboard-heading { + /* dashboard-heading */ + color: #b18bb1; + font-style: italic; +} +.org-dashboard-items { + /* dashboard-items-face */ + font-weight: bold; +} +.org-dashboard-navigator { + /* dashboard-navigator */ + color: #b18bb1; + font-style: italic; +} +.org-dashboard-no-items { + /* dashboard-no-items-face */ + font-weight: bold; +} +.org-dashboard-text-banner { + /* dashboard-text-banner */ + color: #b18bb1; + font-style: italic; +} +.org-default { + /* default */ + color: #FAFFF6; + background-color: #172030; +} +.org-delimiter { + /* font-lock-delimiter-face */ + color: #e7e2e4; +} +.org-diary { + /* diary */ + color: #ffff00; +} +.org-diff-added { + /* diff-added */ + color: #A3B09A; + background-color: #101828; +} +.org-diff-changed { + /* diff-changed */ + color: #5D80AE; +} +.org-diff-changed-unspecified { + /* diff-changed-unspecified */ + color: #5D80AE; + background-color: #333333; +} +.org-diff-context { + /* diff-context */ + color: #dbe0d8; +} +.org-diff-error { + /* diff-error */ + color: #ff0000; + background-color: #000000; + font-weight: bold; +} +.org-diff-file-header { + /* diff-file-header */ + color: #6e94b9; +} +.org-diff-function { + /* diff-function */ + color: #88C0D0; +} +.org-diff-header { + /* diff-header */ + color: #88C0D0; +} +.org-diff-hunk-header { + /* diff-hunk-header */ + color: #5D80AE; +} +.org-diff-index { + /* diff-index */ + color: #6e94b9; +} +.org-diff-indicator-added { + /* diff-indicator-added */ + color: #A3B09A; +} +.org-diff-indicator-changed { + /* diff-indicator-changed */ + color: #eabe9a; +} +.org-diff-indicator-removed { + /* diff-indicator-removed */ + color: #c6797e; +} +.org-diff-nonexistent { + /* diff-nonexistent */ + color: #6e94b9; +} +.org-diff-refine-added { + /* diff-refine-added */ + color: #A3B09A; + background-color: #101828; +} +.org-diff-refine-changed { + /* diff-refine-changed */ + color: #5D80AE; +} +.org-diff-refine-removed { + /* diff-refine-removed */ + color: #c6797e; + background-color: #1F2A3F; +} +.org-diff-removed { + /* diff-removed */ + color: #c6797e; + background-color: #1F2A3F; +} +.org-dired-broken-symlink { + /* dired-broken-symlink */ + color: #ffff00; + background-color: #ff0000; + font-weight: bold; +} +.org-dired-directory { + /* dired-directory */ + color: #DB6E8F; +} +.org-dired-flagged { + /* dired-flagged */ + color: #c6797e; +} +.org-dired-header { + /* dired-header */ + color: #6e94b9; + font-weight: bold; +} +.org-dired-ignored { + /* dired-ignored */ + color: #64727d; +} +.org-dired-mark { + /* dired-mark */ + color: #eabe9a; + font-weight: bold; +} +.org-dired-marked { + /* dired-marked */ + color: #b18bb1; + font-weight: bold; +} +.org-dired-perm-write { + /* dired-perm-write */ + color: #FAFFF6; + text-decoration: underline; +} +.org-dired-set-id { + /* dired-set-id */ + color: #F7E3AF; +} +.org-dired-special { + /* dired-special */ + color: #c6797e; +} +.org-dired-symlink { + /* dired-symlink */ + color: #88C0D0; + font-weight: bold; +} +.org-dired-warning { + /* dired-warning */ + color: #F7E3AF; +} +.org-display-time-date-and-time { +} +.org-doc { + /* font-lock-doc-face */ + color: #A3B09A; + font-style: italic; +} +.org-doc-markup { + /* font-lock-doc-markup-face */ + color: #c6797e; +} +.org-doc-view-svg { + /* doc-view-svg-face */ + color: #000000; + background-color: #ffffff; +} +.org-doom-modeline { +} +.org-doom-modeline-bar { + /* doom-modeline-bar */ + color: #070A0E; + background-color: #B16E75; +} +.org-doom-modeline-bar-inactive { +} +.org-doom-modeline-battery-charging { + /* doom-modeline-battery-charging */ + color: #A3B09A; +} +.org-doom-modeline-battery-critical { + /* doom-modeline-battery-critical */ + color: #c6797e; +} +.org-doom-modeline-battery-error { + /* doom-modeline-battery-error */ + color: #c6797e; +} +.org-doom-modeline-battery-full { + /* doom-modeline-battery-full */ + color: #A3B09A; +} +.org-doom-modeline-battery-warning { + /* doom-modeline-battery-warning */ + color: #F7E3AF; +} +.org-doom-modeline-boon-command-state { + /* doom-modeline-boon-command-state */ + color: #A3B09A; +} +.org-doom-modeline-buffer-timemachine { + /* doom-modeline-buffer-timemachine */ + font-weight: bold; + font-style: italic; +} +.org-doom-modeline-compilation { + /* doom-modeline-compilation */ + color: #F7E3AF; + font-size: 90%; + font-style: italic; +} +.org-doom-modeline-debug-visual { + /* doom-modeline-debug-visual */ + color: #915B2D; +} +.org-doom-modeline-evil-normal-state { + /* doom-modeline-evil-normal-state */ + color: #A3B09A; +} +.org-doom-modeline-evil-replace-state { + /* doom-modeline-evil-replace-state */ + color: #c6797e; +} +.org-doom-modeline-evil-user-state { + /* doom-modeline-evil-user-state */ + color: #F7E3AF; +} +.org-doom-modeline-evil-visual-state { + /* doom-modeline-evil-visual-state */ + color: #F7E3AF; +} +.org-doom-modeline-fly-normal-state { + /* doom-modeline-fly-normal-state */ + color: #A3B09A; +} +.org-doom-modeline-god { + /* doom-modeline-god */ + color: #A3B09A; +} +.org-doom-modeline-lsp-error { + /* doom-modeline-lsp-error */ + color: #c6797e; +} +.org-doom-modeline-lsp-success { + /* doom-modeline-lsp-success */ + color: #A3B09A; +} +.org-doom-modeline-lsp-warning { + /* doom-modeline-lsp-warning */ + color: #F7E3AF; +} +.org-doom-modeline-meow-beacon-state { + /* doom-modeline-meow-beacon-state */ + color: #F7E3AF; +} +.org-doom-modeline-meow-insert-state { + /* doom-modeline-meow-insert-state */ + color: #b18bb1; + font-style: italic; +} +.org-doom-modeline-meow-keypad-state { + /* doom-modeline-meow-keypad-state */ + background-color: #0E131D; +} +.org-doom-modeline-meow-motion-state { + /* doom-modeline-meow-motion-state */ + color: #A3B09A; +} +.org-doom-modeline-meow-normal-state { + /* doom-modeline-meow-normal-state */ + color: #A3B09A; +} +.org-doom-modeline-notification { + /* doom-modeline-notification */ + color: #F7E3AF; +} +.org-doom-modeline-overwrite { + /* doom-modeline-overwrite */ + color: #c6797e; +} +.org-doom-modeline-panel { + /* doom-modeline-panel */ + color: #070A0E; + background-color: #B16E75; +} +.org-doom-modeline-project-root-dir { + /* doom-modeline-project-root-dir */ + color: #B16E75; +} +.org-doom-modeline-repl-success { + /* doom-modeline-repl-success */ + color: #A3B09A; +} +.org-doom-modeline-repl-warning { + /* doom-modeline-repl-warning */ + color: #F7E3AF; +} +.org-doom-modeline-ryo { + /* doom-modeline-ryo */ + color: #A3B09A; +} +.org-doom-modeline-time { +} +.org-doom-modeline-unread-number { + /* doom-modeline-unread-number */ + font-style: italic; +} +.org-doom-themes-org-at-tag { + /* doom-themes-org-at-tag */ + color: #88C0D0; +} +.org-doom-themes-org-hash-tag { + /* doom-themes-org-hash-tag */ + color: #A3B09A; +} +.org-doom-themes-treemacs-file { + /* doom-themes-treemacs-file-face */ + color: #B16E75; +} +.org-doom-themes-treemacs-root { + /* doom-themes-treemacs-root-face */ + color: #B16E75; + font-size: 120%; +} +.org-doom-themes-visual-bell { + /* doom-themes-visual-bell */ + background-color: #c6797e; +} +.org-edmacro-label { + /* edmacro-label */ + color: #add8e6; + font-weight: bold; +} +.org-eldoc-highlight-function-argument { + /* eldoc-highlight-function-argument */ + font-weight: bold; +} +.org-elfeed-log-date { + /* elfeed-log-date-face */ + color: #c6797e; +} +.org-elfeed-log-debug-level { + /* elfeed-log-debug-level-face */ + color: #64727d; +} +.org-elfeed-log-error-level { + /* elfeed-log-error-level-face */ + color: #c6797e; +} +.org-elfeed-log-info-level { + /* elfeed-log-info-level-face */ + color: #A3B09A; +} +.org-elfeed-log-warn-level { + /* elfeed-log-warn-level-face */ + color: #F7E3AF; +} +.org-elfeed-search-date { + /* elfeed-search-date-face */ + color: #5D80AE; +} +.org-elfeed-search-feed { + /* elfeed-search-feed-face */ + color: #6e94b9; +} +.org-elfeed-search-filter { + /* elfeed-search-filter-face */ + color: #5D80AE; +} +.org-elfeed-search-last-update { +} +.org-elfeed-search-tag { + /* elfeed-search-tag-face */ + color: #64727d; +} +.org-elfeed-search-title { + /* elfeed-search-title-face */ + color: #64727d; +} +.org-elfeed-search-unread-count { + /* elfeed-search-unread-count-face */ + color: #F7E3AF; +} +.org-elfeed-search-unread-title { + /* elfeed-search-unread-title-face */ + color: #FAFFF6; + font-weight: bold; +} +.org-elisp-shorthand-font-lock { + /* elisp-shorthand-font-lock-face */ + color: #00ffff; + font-style: italic; +} +.org-emms-browser-album { + /* emms-browser-album-face */ + color: #aaaaff; + font-size: 110%; +} +.org-emms-browser-albumartist { + /* emms-browser-albumartist-face */ + color: #aaaabb; + font-size: 130%; +} +.org-emms-browser-artist { + /* emms-browser-artist-face */ + color: #aaaaff; + font-size: 130%; +} +.org-emms-browser-composer { + /* emms-browser-composer-face */ + color: #aaaaff; + font-size: 130%; +} +.org-emms-browser-performer { + /* emms-browser-performer-face */ + color: #aaaaff; + font-size: 130%; +} +.org-emms-browser-track { + /* emms-browser-track-face */ + color: #aaaaff; +} +.org-emms-browser-yearXgenre { + /* emms-browser-year/genre-face */ + color: #aaaaff; + font-size: 150%; +} +.org-emms-metaplaylist-mode { + /* emms-metaplaylist-mode-face */ + color: #cdc0b0; +} +.org-emms-metaplaylist-mode-current { + /* emms-metaplaylist-mode-current-face */ + color: #ee0000; +} +.org-emms-playlist-selected { + /* emms-playlist-selected-face */ + color: #4f94cd; +} +.org-emms-playlist-track { + /* emms-playlist-track-face */ + color: #8fbc8f; +} +.org-epa-field-body { + /* epa-field-body */ + color: #40e0d0; + font-style: italic; +} +.org-epa-field-name { + /* epa-field-name */ + color: #afeeee; + font-weight: bold; +} +.org-epa-mark { + /* epa-mark */ + color: #ffa500; + font-weight: bold; +} +.org-epa-string { + /* epa-string */ + color: #ffffe0; +} +.org-epa-validity-disabled { + /* epa-validity-disabled */ + font-style: italic; +} +.org-epa-validity-high { + /* epa-validity-high */ + color: #afeeee; + font-weight: bold; +} +.org-epa-validity-low { + /* epa-validity-low */ + font-style: italic; +} +.org-epa-validity-medium { + /* epa-validity-medium */ + color: #afeeee; + font-style: italic; +} +.org-error { + /* error */ + color: #c6797e; +} +.org-escape { + /* font-lock-escape-face */ + color: #b18bb1; + font-weight: bold; +} +.org-escape-glyph { + /* escape-glyph */ + color: #88C0D0; +} +.org-eshell-prompt { + /* eshell-prompt */ + color: #B16E75; + font-weight: bold; +} +.org-evil-ex-commands { + /* evil-ex-commands */ + font-style: italic; + text-decoration: underline; +} +.org-evil-ex-info { + /* evil-ex-info */ + color: #c6797e; + font-style: italic; +} +.org-evil-ex-lazy-highlight { + /* evil-ex-lazy-highlight */ + background-color: #5D636E; +} +.org-evil-ex-search { + /* evil-ex-search */ + color: #070A0E; + background-color: #B16E75; + font-weight: bold; +} +.org-evil-ex-substitute-matches { + /* evil-ex-substitute-matches */ + color: #c6797e; + background-color: #070A0E; + font-weight: bold; + text-decoration: line-through; +} +.org-evil-ex-substitute-replacement { + /* evil-ex-substitute-replacement */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} +.org-eww-form-checkbox { + /* eww-form-checkbox */ + color: #FAFFF6; + background-color: #101828; +} +.org-eww-form-file { + /* eww-form-file */ + color: #FAFFF6; + background-color: #101828; +} +.org-eww-form-select { + /* eww-form-select */ + color: #FAFFF6; + background-color: #101828; +} +.org-eww-form-submit { + /* eww-form-submit */ + color: #FAFFF6; + background-color: #151D2B; +} +.org-eww-form-text { + /* eww-form-text */ + color: #FAFFF6; + background-color: #172030; +} +.org-eww-form-textarea { + /* eww-form-textarea */ + color: #FAFFF6; + background-color: #172030; +} +.org-eww-invalid-certificate { + /* eww-invalid-certificate */ + color: #c6797e; +} +.org-eww-valid-certificate { + /* eww-valid-certificate */ + color: #B16E75; +} +.org-ffap { + /* ffap */ + color: #070A0E; + background-color: #B16E75; +} +.org-file-name-shadow { + /* file-name-shadow */ + color: #64727d; +} +.org-fill-column-indicator { + /* fill-column-indicator */ + color: #64727d; +} +.org-fixed-pitch { +} +.org-fixed-pitch-serif { +} +.org-flycheck-delimited-error { +} +.org-flycheck-error { + /* flycheck-error */ + text-decoration: underline; +} +.org-flycheck-error-delimiter { +} +.org-flycheck-error-list-checker-name { + /* flycheck-error-list-checker-name */ + color: #F9B5AC; +} +.org-flycheck-error-list-column-number { +} +.org-flycheck-error-list-error { + /* flycheck-error-list-error */ + color: #c6797e; +} +.org-flycheck-error-list-error-message { +} +.org-flycheck-error-list-filename { +} +.org-flycheck-error-list-highlight { + /* flycheck-error-list-highlight */ + font-weight: bold; +} +.org-flycheck-error-list-id { + /* flycheck-error-list-id */ + color: #c6797e; +} +.org-flycheck-error-list-id-with-explainer { + /* flycheck-error-list-id-with-explainer */ + color: #c6797e; +} +.org-flycheck-error-list-info { + /* flycheck-error-list-info */ + color: #A3B09A; +} +.org-flycheck-error-list-line-number { +} +.org-flycheck-error-list-warning { + /* flycheck-error-list-warning */ + color: #F7E3AF; +} +.org-flycheck-fringe-error { + /* flycheck-fringe-error */ + color: #c6797e; + background-color: #172030; +} +.org-flycheck-fringe-info { + /* flycheck-fringe-info */ + color: #A3B09A; + background-color: #172030; +} +.org-flycheck-fringe-warning { + /* flycheck-fringe-warning */ + color: #F7E3AF; + background-color: #172030; +} +.org-flycheck-info { + /* flycheck-info */ + text-decoration: underline; +} +.org-flycheck-verify-select-checker { +} +.org-flycheck-warning { + /* flycheck-warning */ + text-decoration: underline; +} +.org-flyspell-duplicate { + /* flyspell-duplicate */ + text-decoration: underline; +} +.org-flyspell-incorrect { + /* flyspell-incorrect */ + text-decoration: underline; +} +.org-fringe { + /* fringe */ + color: #5D636E; + background-color: #172030; +} +.org-function-call { + /* font-lock-function-call-face */ + color: #f9cbc2; + font-style: italic; +} +.org-function-name { + /* font-lock-function-name-face */ + color: #F9B5AC; +} +.org-git-commit-comment-action { + /* git-commit-comment-action */ + font-weight: bold; +} +.org-git-commit-comment-branch-local { + /* git-commit-comment-branch-local */ + color: #b18bb1; +} +.org-git-commit-comment-branch-remote { + /* git-commit-comment-branch-remote */ + color: #A3B09A; +} +.org-git-commit-comment-detached { + /* git-commit-comment-detached */ + color: #eabe9a; +} +.org-git-commit-comment-file { + /* git-commit-comment-file */ + color: #5D80AE; +} +.org-git-commit-comment-heading { + /* git-commit-comment-heading */ + color: #b18bb1; +} +.org-git-commit-keyword { + /* git-commit-keyword */ + color: #88C0D0; + font-style: italic; +} +.org-git-commit-nonempty-second-line { + /* git-commit-nonempty-second-line */ + color: #c6797e; + background-color: #070A0E; + font-weight: bold; + font-style: italic; +} +.org-git-commit-overlong-summary { + /* git-commit-overlong-summary */ + color: #c6797e; + background-color: #070A0E; + font-weight: bold; + font-style: italic; +} +.org-git-commit-summary { + /* git-commit-summary */ + color: #A3B09A; +} +.org-git-commit-trailer-token { + /* git-commit-trailer-token */ + color: #b18bb1; + font-style: italic; +} +.org-git-commit-trailer-value { + /* git-commit-trailer-value */ + color: #A3B09A; +} +.org-glyphless-char { + /* glyphless-char */ + font-size: 60%; +} +.org-gnus-button { + /* gnus-button */ + font-weight: bold; +} +.org-gnus-emphasis-bold { + /* gnus-emphasis-bold */ + font-weight: bold; +} +.org-gnus-emphasis-bold-italic { + /* gnus-emphasis-bold-italic */ + font-weight: bold; + font-style: italic; +} +.org-gnus-emphasis-highlight-words { + /* gnus-emphasis-highlight-words */ + color: #ffff00; + background-color: #000000; +} +.org-gnus-emphasis-italic { + /* gnus-emphasis-italic */ + font-style: italic; +} +.org-gnus-emphasis-strikethru { + /* gnus-emphasis-strikethru */ + text-decoration: line-through; +} +.org-gnus-emphasis-underline { + /* gnus-emphasis-underline */ + text-decoration: underline; +} +.org-gnus-emphasis-underline-bold { + /* gnus-emphasis-underline-bold */ + font-weight: bold; + text-decoration: underline; +} +.org-gnus-emphasis-underline-bold-italic { + /* gnus-emphasis-underline-bold-italic */ + font-weight: bold; + font-style: italic; + text-decoration: underline; +} +.org-gnus-emphasis-underline-italic { + /* gnus-emphasis-underline-italic */ + font-style: italic; + text-decoration: underline; +} +.org-gnus-group-mail-1 { + /* gnus-group-mail-1 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-mail-1-empty { + /* gnus-group-mail-1-empty */ + color: #64727d; +} +.org-gnus-group-mail-2 { + /* gnus-group-mail-2 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-mail-2-empty { + /* gnus-group-mail-2-empty */ + color: #64727d; +} +.org-gnus-group-mail-3 { + /* gnus-group-mail-3 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-mail-3-empty { + /* gnus-group-mail-3-empty */ + color: #64727d; +} +.org-gnus-group-mail-low { + /* gnus-group-mail-low */ + color: #FAFFF6; +} +.org-gnus-group-mail-low-empty { + /* gnus-group-mail-low-empty */ + color: #64727d; +} +.org-gnus-group-news-1 { + /* gnus-group-news-1 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-1-empty { + /* gnus-group-news-1-empty */ + color: #64727d; +} +.org-gnus-group-news-2 { + /* gnus-group-news-2 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-2-empty { + /* gnus-group-news-2-empty */ + color: #64727d; +} +.org-gnus-group-news-3 { + /* gnus-group-news-3 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-3-empty { + /* gnus-group-news-3-empty */ + color: #64727d; +} +.org-gnus-group-news-4 { + /* gnus-group-news-4 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-4-empty { + /* gnus-group-news-4-empty */ + color: #64727d; +} +.org-gnus-group-news-5 { + /* gnus-group-news-5 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-5-empty { + /* gnus-group-news-5-empty */ + color: #64727d; +} +.org-gnus-group-news-6 { + /* gnus-group-news-6 */ + color: #FAFFF6; + font-weight: bold; +} +.org-gnus-group-news-6-empty { + /* gnus-group-news-6-empty */ + color: #64727d; +} +.org-gnus-group-news-low { + /* gnus-group-news-low */ + color: #64727d; + font-weight: bold; +} +.org-gnus-group-news-low-empty { + /* gnus-group-news-low-empty */ + color: #64727d; +} +.org-gnus-header { + /* gnus-header */ + font-size: 110%; +} +.org-gnus-header-content { + /* gnus-header-content */ + color: #5D80AE; +} +.org-gnus-header-from { + /* gnus-header-from */ + color: #5D80AE; +} +.org-gnus-header-name { + /* gnus-header-name */ + color: #A3B09A; +} +.org-gnus-header-newsgroups { + /* gnus-header-newsgroups */ + color: #5D80AE; +} +.org-gnus-header-subject { + /* gnus-header-subject */ + color: #B16E75; + font-weight: bold; +} +.org-gnus-signature { + /* gnus-signature */ + color: #F7E3AF; +} +.org-gnus-splash { + /* gnus-splash */ + color: #cccccc; +} +.org-gnus-summary-cancelled { + /* gnus-summary-cancelled */ + color: #c6797e; + text-decoration: line-through; +} +.org-gnus-summary-high-ancient { + /* gnus-summary-high-ancient */ + color: #838e96; + font-style: italic; +} +.org-gnus-summary-high-read { + /* gnus-summary-high-read */ + color: #fbfff7; +} +.org-gnus-summary-high-ticked { + /* gnus-summary-high-ticked */ + color: #c0a2c0; +} +.org-gnus-summary-high-undownloaded { + /* gnus-summary-high-undownloaded */ + color: #d3d3d3; + font-weight: bold; +} +.org-gnus-summary-high-unread { + /* gnus-summary-high-unread */ + color: #b5bfae; +} +.org-gnus-summary-low-ancient { + /* gnus-summary-low-ancient */ + color: #505b64; + font-style: italic; +} +.org-gnus-summary-low-read { + /* gnus-summary-low-read */ + color: #c8ccc4; +} +.org-gnus-summary-low-ticked { + /* gnus-summary-low-ticked */ + color: #8d6f8d; +} +.org-gnus-summary-low-undownloaded { + /* gnus-summary-low-undownloaded */ + color: #d3d3d3; + font-style: italic; +} +.org-gnus-summary-low-unread { + /* gnus-summary-low-unread */ + color: #828c7b; +} +.org-gnus-summary-normal-ancient { + /* gnus-summary-normal-ancient */ + color: #64727d; + font-style: italic; +} +.org-gnus-summary-normal-read { + /* gnus-summary-normal-read */ + color: #FAFFF6; +} +.org-gnus-summary-normal-ticked { + /* gnus-summary-normal-ticked */ + color: #b18bb1; +} +.org-gnus-summary-normal-undownloaded { + /* gnus-summary-normal-undownloaded */ + color: #d3d3d3; +} +.org-gnus-summary-normal-unread { + /* gnus-summary-normal-unread */ + color: #A3B09A; + font-weight: bold; +} +.org-gnus-summary-selected { + /* gnus-summary-selected */ + color: #6e94b9; + font-weight: bold; +} +.org-grep-heading { + /* grep-heading */ + color: #A3B09A; +} +.org-header-line { + /* header-line */ + background-color: #0E131D; +} +.org-header-line-highlight { + /* header-line-highlight */ + color: #070A0E; + background-color: #B16E75; +} +.org-help-argument-name { + /* help-argument-name */ + font-style: italic; +} +.org-help-for-help-header { + /* help-for-help-header */ + font-size: 126%; +} +.org-help-key-binding { + /* help-key-binding */ + color: #add8e6; + background-color: #303030; +} +.org-highlight { + /* highlight */ + color: #070A0E; + background-color: #B16E75; +} +.org-hl-line { + /* hl-line */ + background-color: #101828; +} +.org-holiday { + /* holiday */ + background-color: #8b4513; +} +.org-homoglyph { + /* homoglyph */ + color: #00ffff; +} +.org-ibuffer-locked-buffer { + /* ibuffer-locked-buffer */ + color: #bc8f8f; +} +.org-icon { +} +.org-icon-button { + /* icon-button */ + color: #000000; + background-color: #808080; +} +.org-info-header-node { + /* info-header-node */ + color: #ffffff; + font-weight: bold; + font-style: italic; +} +.org-info-header-xref { + /* info-header-xref */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-info-index-match { + /* info-index-match */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} +.org-info-menu-header { + /* info-menu-header */ + font-weight: bold; +} +.org-info-menu-star { + /* info-menu-star */ + color: #ff0000; +} +.org-info-node { + /* info-node */ + color: #ffffff; + font-weight: bold; + font-style: italic; +} +.org-info-quoted { +} +.org-info-title-1 { + /* info-title-1 */ + font-size: 172%; + font-weight: bold; +} +.org-info-title-2 { + /* info-title-2 */ + font-size: 144%; + font-weight: bold; +} +.org-info-title-3 { + /* info-title-3 */ + font-size: 120%; + font-weight: bold; +} +.org-info-title-4 { + /* info-title-4 */ + font-weight: bold; +} +.org-info-xref { + /* info-xref */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-internal-border { +} +.org-isearch { + /* isearch */ + background-color: #5D636E; + font-weight: bold; +} +.org-isearch-fail { + /* isearch-fail */ + color: #070A0E; + background-color: #c6797e; + font-weight: bold; +} +.org-isearch-group-1 { + /* isearch-group-1 */ + color: #8b2323; + background-color: #ff82ab; +} +.org-isearch-group-2 { + /* isearch-group-2 */ + color: #8b2323; + background-color: #cd6889; +} +.org-italic { + /* italic */ + font-style: italic; +} +.org-ivy-action { + /* ivy-action */ + color: #DB6E8F; +} +.org-ivy-completions-annotations { + /* ivy-completions-annotations */ + color: #64727d; + font-style: italic; +} +.org-ivy-confirm { + /* ivy-confirm-face */ + color: #A3B09A; +} +.org-ivy-current-match { + /* ivy-current-match */ + background-color: #1F2A3F; +} +.org-ivy-cursor { + /* ivy-cursor */ + color: #000000; + background-color: #ffffff; +} +.org-ivy-grep-info { + /* ivy-grep-info */ + color: #A3B09A; +} +.org-ivy-grep-line-number { + /* ivy-grep-line-number */ + color: #B16E75; +} +.org-ivy-highlight { + /* ivy-highlight-face */ + color: #5D80AE; +} +.org-ivy-match-required { + /* ivy-match-required-face */ + color: #c6797e; +} +.org-ivy-minibuffer-match-face-1 { + /* ivy-minibuffer-match-face-1 */ + color: #79858f; +} +.org-ivy-minibuffer-match-face-2 { + /* ivy-minibuffer-match-face-2 */ + color: #B16E75; +} +.org-ivy-minibuffer-match-face-3 { + /* ivy-minibuffer-match-face-3 */ + color: #A3B09A; +} +.org-ivy-minibuffer-match-face-4 { + /* ivy-minibuffer-match-face-4 */ + color: #F7E3AF; +} +.org-ivy-minibuffer-match-highlight { + /* ivy-minibuffer-match-highlight */ + color: #5D80AE; +} +.org-ivy-modified-buffer { + /* ivy-modified-buffer */ + color: #F7E3AF; + font-weight: bold; +} +.org-ivy-modified-outside-buffer { + /* ivy-modified-outside-buffer */ + color: #FAFFF6; + background-color: #172030; +} +.org-ivy-org { + /* ivy-org */ + color: #92aeca; + font-weight: bold; +} +.org-ivy-prompt-match { + /* ivy-prompt-match */ + background-color: #1F2A3F; +} +.org-ivy-remote { + /* ivy-remote */ + color: #7B6BFF; +} +.org-ivy-separator { + /* ivy-separator */ + color: #A3B09A; + font-style: italic; +} +.org-ivy-subdir { + /* ivy-subdir */ + color: #DB6E8F; +} +.org-ivy-virtual { + /* ivy-virtual */ + color: #A3B09A; + font-style: italic; +} +.org-ivy-yanked-word { + /* ivy-yanked-word */ + color: #070A0E; + background-color: #B16E75; +} +.org-keyword { + /* font-lock-keyword-face */ + color: #b18bb1; + font-style: italic; +} +.org-kmacro-menu-flagged { + /* kmacro-menu-flagged */ + color: #c6797e; +} +.org-kmacro-menu-mark { + /* kmacro-menu-mark */ + color: #c6797e; +} +.org-kmacro-menu-marked { + /* kmacro-menu-marked */ + color: #F7E3AF; +} +.org-lazy-highlight { + /* lazy-highlight */ + background-color: #5D636E; +} +.org-line-number { + /* line-number */ + color: #838e96; + background-color: #172030; +} +.org-line-number-major-tick { + /* line-number-major-tick */ + background-color: #bfbfbf; + font-weight: bold; +} +.org-line-number-minor-tick { + /* line-number-minor-tick */ + background-color: #8c8c8c; + font-weight: bold; +} +.org-link { + /* link */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-link-visited { + /* link-visited */ + color: #ee82ee; + font-weight: bold; + text-decoration: underline; +} +.org-llama-XX-macro { + /* llama-\#\#-macro */ + color: #f9cbc2; + font-style: italic; +} +.org-llama-deleted-argument { +} +.org-llama-llama-macro { + /* llama-llama-macro */ + color: #b18bb1; + font-style: italic; +} +.org-llama-mandatory-argument { + /* llama-mandatory-argument */ + color: #e0bcba; +} +.org-llama-optional-argument { + /* llama-optional-argument */ + color: #c6797e; +} +.org-log-edit-header { + /* log-edit-header */ + color: #b18bb1; + font-style: italic; +} +.org-log-edit-headers-separator { + /* log-edit-headers-separator */ + font-size: 10%; +} +.org-log-edit-summary { + /* log-edit-summary */ + color: #F9B5AC; +} +.org-log-edit-unknown-header { + /* log-edit-unknown-header */ + color: #64727d; + font-style: italic; +} +.org-lsp-details { + /* lsp-details-face */ + color: #64727d; + font-size: 80%; +} +.org-lsp-erlang-elp-bound-modifier { + /* lsp-erlang-elp-bound-modifier-face */ + text-decoration: underline; +} +.org-lsp-erlang-elp-deprecated-function-modifier { + /* lsp-erlang-elp-deprecated-function-modifier-face */ + text-decoration: line-through; +} +.org-lsp-erlang-elp-exported-function-modifier { + /* lsp-erlang-elp-exported-function-modifier-face */ + text-decoration: underline; +} +.org-lsp-erlang-elp-exported-type-modifier { + /* lsp-erlang-elp-exported-type-modifier-face */ + text-decoration: underline; +} +.org-lsp-erlang-elp-type-dynamic-modifier { + /* lsp-erlang-elp-type-dynamic-modifier-face */ + font-weight: bold; +} +.org-lsp-face-highlight-read { + /* lsp-face-highlight-read */ + color: #F0F4FC; + background-color: #453744; + font-weight: bold; +} +.org-lsp-face-highlight-textual { + /* lsp-face-highlight-textual */ + color: #F0F4FC; + background-color: #453744; + font-weight: bold; +} +.org-lsp-face-highlight-write { + /* lsp-face-highlight-write */ + color: #F0F4FC; + background-color: #453744; + font-weight: bold; +} +.org-lsp-face-rename { + /* lsp-face-rename */ + text-decoration: underline; +} +.org-lsp-face-semhl-class { + /* lsp-face-semhl-class */ + color: #c6797e; +} +.org-lsp-face-semhl-comment { + /* lsp-face-semhl-comment */ + color: #64727d; + font-style: italic; +} +.org-lsp-face-semhl-constant { + /* lsp-face-semhl-constant */ + color: #c6797e; +} +.org-lsp-face-semhl-default-library { + /* lsp-face-semhl-default-library */ + color: #DB6E8F; +} +.org-lsp-face-semhl-definition { + /* lsp-face-semhl-definition */ + color: #F9B5AC; + font-weight: bold; +} +.org-lsp-face-semhl-deprecated { + /* lsp-face-semhl-deprecated */ + text-decoration: line-through; +} +.org-lsp-face-semhl-enum { + /* lsp-face-semhl-enum */ + color: #c6797e; +} +.org-lsp-face-semhl-event { + /* lsp-face-semhl-event */ + color: #c6797e; +} +.org-lsp-face-semhl-function { + /* lsp-face-semhl-function */ + color: #F9B5AC; +} +.org-lsp-face-semhl-implementation { + /* lsp-face-semhl-implementation */ + color: #F9B5AC; + font-weight: bold; +} +.org-lsp-face-semhl-interface { + /* lsp-face-semhl-interface */ + color: #c6797e; +} +.org-lsp-face-semhl-keyword { + /* lsp-face-semhl-keyword */ + color: #b18bb1; + font-style: italic; +} +.org-lsp-face-semhl-label { + /* lsp-face-semhl-label */ + color: #64727d; + font-style: italic; +} +.org-lsp-face-semhl-macro { + /* lsp-face-semhl-macro */ + color: #b18bb1; + font-style: italic; +} +.org-lsp-face-semhl-member { + /* lsp-face-semhl-member */ + color: #c6797e; +} +.org-lsp-face-semhl-method { + /* lsp-face-semhl-method */ + color: #F9B5AC; +} +.org-lsp-face-semhl-namespace { + /* lsp-face-semhl-namespace */ + color: #c6797e; + font-weight: bold; +} +.org-lsp-face-semhl-number { + /* lsp-face-semhl-number */ + color: #c6797e; +} +.org-lsp-face-semhl-operator { + /* lsp-face-semhl-operator */ + color: #F9B5AC; +} +.org-lsp-face-semhl-parameter { + /* lsp-face-semhl-parameter */ + color: #c6797e; +} +.org-lsp-face-semhl-property { + /* lsp-face-semhl-property */ + color: #c6797e; +} +.org-lsp-face-semhl-regexp { + /* lsp-face-semhl-regexp */ + color: #A3B09A; + font-style: italic; +} +.org-lsp-face-semhl-static { + /* lsp-face-semhl-static */ + color: #b18bb1; + font-style: italic; +} +.org-lsp-face-semhl-string { + /* lsp-face-semhl-string */ + color: #A3B09A; +} +.org-lsp-face-semhl-struct { + /* lsp-face-semhl-struct */ + color: #c6797e; +} +.org-lsp-face-semhl-type { + /* lsp-face-semhl-type */ + color: #c6797e; +} +.org-lsp-face-semhl-type-parameter { + /* lsp-face-semhl-type-parameter */ + color: #c6797e; +} +.org-lsp-face-semhl-variable { + /* lsp-face-semhl-variable */ + color: #c6797e; +} +.org-lsp-flycheck-warning-unnecessary { + /* lsp-flycheck-warning-unnecessary-face */ + color: #bebebe; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-deprecated { + /* lsp-headerline-breadcrumb-deprecated-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; + text-decoration: line-through; +} +.org-lsp-headerline-breadcrumb-path { + /* lsp-headerline-breadcrumb-path-face */ + color: #A3B09A; +} +.org-lsp-headerline-breadcrumb-path-error { + /* lsp-headerline-breadcrumb-path-error-face */ + color: #A3B09A; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-path-hint { + /* lsp-headerline-breadcrumb-path-hint-face */ + color: #A3B09A; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-path-info { + /* lsp-headerline-breadcrumb-path-info-face */ + color: #A3B09A; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-path-warning { + /* lsp-headerline-breadcrumb-path-warning-face */ + color: #A3B09A; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-project-prefix { + /* lsp-headerline-breadcrumb-project-prefix-face */ + color: #A3B09A; + font-weight: bold; +} +.org-lsp-headerline-breadcrumb-separator { + /* lsp-headerline-breadcrumb-separator-face */ + color: #64727d; +} +.org-lsp-headerline-breadcrumb-symbols { + /* lsp-headerline-breadcrumb-symbols-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; +} +.org-lsp-headerline-breadcrumb-symbols-error { + /* lsp-headerline-breadcrumb-symbols-error-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-symbols-hint { + /* lsp-headerline-breadcrumb-symbols-hint-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-symbols-info { + /* lsp-headerline-breadcrumb-symbols-info-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-symbols-warning { + /* lsp-headerline-breadcrumb-symbols-warning-face */ + color: #A3B09A; + font-weight: bold; + font-style: italic; + text-decoration: underline; +} +.org-lsp-headerline-breadcrumb-unknown-project-prefix { + /* lsp-headerline-breadcrumb-unknown-project-prefix-face */ + color: #64727d; + font-weight: bold; +} +.org-lsp-inlay-hint { + /* lsp-inlay-hint-face */ + color: #64727d; + font-style: italic; +} +.org-lsp-inlay-hint-parameter { + /* lsp-inlay-hint-parameter-face */ + color: #64727d; + font-style: italic; +} +.org-lsp-inlay-hint-type { + /* lsp-inlay-hint-type-face */ + color: #64727d; + font-style: italic; +} +.org-lsp-installation-buffer { + /* lsp-installation-buffer-face */ + color: #00ff00; +} +.org-lsp-installation-finished-buffer { + /* lsp-installation-finished-buffer-face */ + color: #ffa500; +} +.org-lsp-lens { + /* lsp-lens-face */ + color: #64727d; + font-size: 80%; +} +.org-lsp-lens-mouse { + /* lsp-lens-mouse-face */ + color: #B16E75; + font-size: 80%; + font-weight: bold; + text-decoration: underline; +} +.org-lsp-modeline-code-actions { + /* lsp-modeline-code-actions-face */ + color: #00ffff; +} +.org-lsp-modeline-code-actions-preferred { + /* lsp-modeline-code-actions-preferred-face */ + color: #ffff00; +} +.org-lsp-ocaml-highlight-region { + /* lsp-ocaml-highlight-region-face */ + background-color: #5D636E; +} +.org-lsp-rename-placeholder { + /* lsp-rename-placeholder-face */ + color: #c6797e; +} +.org-lsp-rust-analyzer-abstract-modifier { +} +.org-lsp-rust-analyzer-async-modifier { +} +.org-lsp-rust-analyzer-attribute-modifier { +} +.org-lsp-rust-analyzer-callable-modifier { +} +.org-lsp-rust-analyzer-constant-modifier { +} +.org-lsp-rust-analyzer-consuming-modifier { +} +.org-lsp-rust-analyzer-control-flow-modifier { +} +.org-lsp-rust-analyzer-crate-root-modifier { +} +.org-lsp-rust-analyzer-declaration-modifier { +} +.org-lsp-rust-analyzer-default-library-modifier { +} +.org-lsp-rust-analyzer-definition-modifier { +} +.org-lsp-rust-analyzer-deprecated-modifier { +} +.org-lsp-rust-analyzer-documentation-modifier { +} +.org-lsp-rust-analyzer-injected-modifier { +} +.org-lsp-rust-analyzer-intra-doc-link-modifier { +} +.org-lsp-rust-analyzer-library-modifier { +} +.org-lsp-rust-analyzer-mutable-modifier { + /* lsp-rust-analyzer-mutable-modifier-face */ + text-decoration: underline; +} +.org-lsp-rust-analyzer-public-modifier { +} +.org-lsp-rust-analyzer-readonly-modifier { +} +.org-lsp-rust-analyzer-reference-modifier { + /* lsp-rust-analyzer-reference-modifier-face */ + font-weight: bold; +} +.org-lsp-rust-analyzer-static-modifier { +} +.org-lsp-rust-analyzer-trait-modifier { +} +.org-lsp-rust-analyzer-unsafe-modifier { +} +.org-lsp-signature { + /* lsp-signature-face */ + color: #64727d; + font-size: 80%; +} +.org-lsp-signature-highlight-function-argument { + /* lsp-signature-highlight-function-argument */ + font-weight: bold; +} +.org-lsp-signature-posframe { + /* lsp-signature-posframe */ + color: #A7ACB9; + background-color: #1F2A3F; +} +.org-lv-separator { + /* lv-separator */ + background-color: #4d4d4d; +} +.org-magit-bisect-bad { + /* magit-bisect-bad */ + color: #c6797e; +} +.org-magit-bisect-good { + /* magit-bisect-good */ + color: #A3B09A; +} +.org-magit-bisect-skip { + /* magit-bisect-skip */ + color: #eabe9a; +} +.org-magit-blame-date { + /* magit-blame-date */ + color: #c6797e; +} +.org-magit-blame-dimmed { + /* magit-blame-dimmed */ + color: #A7ACB9; +} +.org-magit-blame-hash { + /* magit-blame-hash */ + color: #88C0D0; +} +.org-magit-blame-heading { + /* magit-blame-heading */ + color: #eabe9a; + background-color: #1F2A3F; +} +.org-magit-blame-highlight { + /* magit-blame-highlight */ + color: #ffffff; + background-color: #404040; +} +.org-magit-blame-margin { + /* magit-blame-margin */ + color: #ffffff; + background-color: #404040; +} +.org-magit-blame-name { +} +.org-magit-blame-summary { +} +.org-magit-branch-current { + /* magit-branch-current */ + color: #6e94b9; +} +.org-magit-branch-local { + /* magit-branch-local */ + color: #88C0D0; +} +.org-magit-branch-remote { + /* magit-branch-remote */ + color: #A3B09A; +} +.org-magit-branch-remote-head { + /* magit-branch-remote-head */ + color: #A3B09A; +} +.org-magit-branch-upstream { + /* magit-branch-upstream */ + font-style: italic; +} +.org-magit-branch-warning { + /* magit-branch-warning */ + color: #F7E3AF; +} +.org-magit-cherry-equivalent { + /* magit-cherry-equivalent */ + color: #5D80AE; +} +.org-magit-cherry-unmatched { + /* magit-cherry-unmatched */ + color: #88C0D0; +} +.org-magit-diff-added { + /* magit-diff-added */ + color: #828c7b; + background-color: #242e3a; +} +.org-magit-diff-added-highlight { + /* magit-diff-added-highlight */ + color: #A3B09A; + background-color: #333c45; + font-weight: bold; +} +.org-magit-diff-base { + /* magit-diff-base */ + color: #bb987b; + background-color: #2c2f3a; +} +.org-magit-diff-base-highlight { + /* magit-diff-base-highlight */ + color: #eabe9a; + background-color: #413f45; + font-weight: bold; +} +.org-magit-diff-conflict-heading { + /* magit-diff-conflict-heading */ + color: #172030; + background-color: #453744; +} +.org-magit-diff-conflict-heading-highlight { + /* magit-diff-conflict-heading-highlight */ + color: #172030; + background-color: #B16E75; + font-weight: bold; +} +.org-magit-diff-context { + /* magit-diff-context */ + color: #959993; + background-color: #172030; +} +.org-magit-diff-context-highlight { + /* magit-diff-context-highlight */ + color: #FAFFF6; + background-color: #101828; +} +.org-magit-diff-file-heading { + /* magit-diff-file-heading */ + color: #FAFFF6; + font-weight: bold; +} +.org-magit-diff-file-heading-highlight { + /* magit-diff-file-heading-highlight */ + background-color: #101828; +} +.org-magit-diff-file-heading-selection { + /* magit-diff-file-heading-selection */ + color: #b18bb1; + background-color: #1E6378; + font-weight: bold; +} +.org-magit-diff-hunk-heading { + /* magit-diff-hunk-heading */ + color: #172030; + background-color: #453744; +} +.org-magit-diff-hunk-heading-highlight { + /* magit-diff-hunk-heading-highlight */ + color: #172030; + background-color: #B16E75; + font-weight: bold; +} +.org-magit-diff-hunk-heading-selection { + /* magit-diff-hunk-heading-selection */ + color: #cd8162; + background-color: #B16E75; + font-weight: bold; +} +.org-magit-diff-hunk-region { + /* magit-diff-hunk-region */ + font-weight: bold; +} +.org-magit-diff-lines-boundary { + /* magit-diff-lines-boundary */ + color: #F7E3AF; + background-color: #c6797e; +} +.org-magit-diff-lines-heading { + /* magit-diff-lines-heading */ + color: #F7E3AF; + background-color: #c6797e; +} +.org-magit-diff-our { + /* magit-diff-our */ + color: #9e6064; + background-color: #2f3145; +} +.org-magit-diff-our-highlight { + /* magit-diff-our-highlight */ + color: #c6797e; + background-color: #40394b; + font-weight: bold; +} +.org-magit-diff-removed { + /* magit-diff-removed */ + color: #9e6064; + background-color: #2f3145; +} +.org-magit-diff-removed-highlight { + /* magit-diff-removed-highlight */ + color: #c6797e; + background-color: #40394b; + font-weight: bold; +} +.org-magit-diff-revision-summary { + /* magit-diff-revision-summary */ + color: #172030; + background-color: #453744; +} +.org-magit-diff-revision-summary-highlight { + /* magit-diff-revision-summary-highlight */ + color: #172030; + background-color: #B16E75; + font-weight: bold; +} +.org-magit-diff-their { + /* magit-diff-their */ + color: #828c7b; + background-color: #242e3a; +} +.org-magit-diff-their-highlight { + /* magit-diff-their-highlight */ + color: #A3B09A; + background-color: #333c45; + font-weight: bold; +} +.org-magit-diff-whitespace-warning { + /* magit-diff-whitespace-warning */ + background-color: #c6797e; +} +.org-magit-diffstat-added { + /* magit-diffstat-added */ + color: #A3B09A; +} +.org-magit-diffstat-removed { + /* magit-diffstat-removed */ + color: #c6797e; +} +.org-magit-dimmed { + /* magit-dimmed */ + color: #A7ACB9; +} +.org-magit-filename { + /* magit-filename */ + color: #5D80AE; +} +.org-magit-hash { + /* magit-hash */ + color: #64727d; +} +.org-magit-head { + /* magit-head */ + color: #88C0D0; +} +.org-magit-header-line { + /* magit-header-line */ + color: #F0F4FC; + background-color: #1E6378; + font-weight: bold; +} +.org-magit-header-line-key { + /* magit-header-line-key */ + color: #DB6E8F; +} +.org-magit-header-line-log-select { + /* magit-header-line-log-select */ + font-weight: bold; +} +.org-magit-keyword { + /* magit-keyword */ + color: #A3B09A; +} +.org-magit-keyword-squash { + /* magit-keyword-squash */ + color: #F7E3AF; +} +.org-magit-left-margin { + /* magit-left-margin */ + color: #FAFFF6; + background-color: #172030; +} +.org-magit-log-author { + /* magit-log-author */ + color: #eabe9a; +} +.org-magit-log-date { + /* magit-log-date */ + color: #6e94b9; +} +.org-magit-log-graph { + /* magit-log-graph */ + color: #64727d; +} +.org-magit-mode-line-process { + /* magit-mode-line-process */ + color: #B16E75; +} +.org-magit-mode-line-process-error { + /* magit-mode-line-process-error */ + color: #c6797e; +} +.org-magit-process-ng { + /* magit-process-ng */ + color: #c6797e; +} +.org-magit-process-ok { + /* magit-process-ok */ + color: #A3B09A; +} +.org-magit-reflog-amend { + /* magit-reflog-amend */ + color: #b18bb1; +} +.org-magit-reflog-checkout { + /* magit-reflog-checkout */ + color: #6e94b9; +} +.org-magit-reflog-cherry-pick { + /* magit-reflog-cherry-pick */ + color: #A3B09A; +} +.org-magit-reflog-commit { + /* magit-reflog-commit */ + color: #A3B09A; +} +.org-magit-reflog-merge { + /* magit-reflog-merge */ + color: #A3B09A; +} +.org-magit-reflog-other { + /* magit-reflog-other */ + color: #88C0D0; +} +.org-magit-reflog-rebase { + /* magit-reflog-rebase */ + color: #b18bb1; +} +.org-magit-reflog-remote { + /* magit-reflog-remote */ + color: #88C0D0; +} +.org-magit-reflog-reset { + /* magit-reflog-reset */ + color: #c6797e; +} +.org-magit-refname { + /* magit-refname */ + color: #64727d; +} +.org-magit-refname-pullreq { + /* magit-refname-pullreq */ + color: #64727d; +} +.org-magit-refname-stash { + /* magit-refname-stash */ + color: #64727d; +} +.org-magit-refname-wip { + /* magit-refname-wip */ + color: #64727d; +} +.org-magit-section-child-count { +} +.org-magit-section-heading { + /* magit-section-heading */ + color: #B16E75; +} +.org-magit-section-heading-selection { + /* magit-section-heading-selection */ + color: #eabe9a; + font-weight: bold; +} +.org-magit-section-highlight { + /* magit-section-highlight */ + background-color: #101828; +} +.org-magit-section-secondary-heading { + /* magit-section-secondary-heading */ + color: #5D80AE; + font-weight: bold; +} +.org-magit-sequence-done { + /* magit-sequence-done */ + color: #64727d; +} +.org-magit-sequence-drop { + /* magit-sequence-drop */ + color: #c6797e; +} +.org-magit-sequence-exec { + /* magit-sequence-exec */ + color: #64727d; +} +.org-magit-sequence-head { + /* magit-sequence-head */ + color: #6e94b9; +} +.org-magit-sequence-onto { + /* magit-sequence-onto */ + color: #64727d; +} +.org-magit-sequence-part { + /* magit-sequence-part */ + color: #eabe9a; +} +.org-magit-sequence-pick { + /* magit-sequence-pick */ + color: #FAFFF6; + background-color: #172030; +} +.org-magit-sequence-stop { + /* magit-sequence-stop */ + color: #A3B09A; +} +.org-magit-signature-bad { + /* magit-signature-bad */ + color: #c6797e; +} +.org-magit-signature-error { + /* magit-signature-error */ + color: #c6797e; +} +.org-magit-signature-expired { + /* magit-signature-expired */ + color: #eabe9a; +} +.org-magit-signature-expired-key { + /* magit-signature-expired-key */ + color: #eabe9a; +} +.org-magit-signature-good { + /* magit-signature-good */ + color: #A3B09A; +} +.org-magit-signature-revoked { + /* magit-signature-revoked */ + color: #b18bb1; +} +.org-magit-signature-untrusted { + /* magit-signature-untrusted */ + color: #F7E3AF; +} +.org-magit-tag { + /* magit-tag */ + color: #F7E3AF; +} +.org-markdown-blockquote { + /* markdown-blockquote-face */ + color: #A3B09A; + font-style: italic; +} +.org-markdown-bold { + /* markdown-bold-face */ + color: #eabe9a; + font-weight: bold; +} +.org-markdown-code { + /* markdown-code-face */ + background-color: #2a3448; +} +.org-markdown-comment { + /* markdown-comment-face */ + color: #64727d; + font-style: italic; +} +.org-markdown-footnote-marker { + /* markdown-footnote-marker-face */ + color: #64727d; +} +.org-markdown-footnote-text { + /* markdown-footnote-text-face */ + color: #64727d; + font-style: italic; +} +.org-markdown-gfm-checkbox { + /* markdown-gfm-checkbox-face */ + color: #DB6E8F; +} +.org-markdown-header { + /* markdown-header-face */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-delimiter { + /* markdown-header-delimiter-face */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-1 { + /* markdown-header-face-1 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-2 { + /* markdown-header-face-2 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-3 { + /* markdown-header-face-3 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-4 { + /* markdown-header-face-4 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-5 { + /* markdown-header-face-5 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-face-6 { + /* markdown-header-face-6 */ + color: #c6797e; + font-weight: bold; +} +.org-markdown-header-rule { + /* markdown-header-rule-face */ + color: #64727d; +} +.org-markdown-highlight { + /* markdown-highlight-face */ + color: #070A0E; + background-color: #B16E75; +} +.org-markdown-highlighting { + /* markdown-highlighting-face */ + color: #000000; + background-color: #ffff00; +} +.org-markdown-hr { + /* markdown-hr-face */ + color: #64727d; +} +.org-markdown-html-attr-name { + /* markdown-html-attr-name-face */ + color: #c6797e; +} +.org-markdown-html-attr-value { + /* markdown-html-attr-value-face */ + color: #A3B09A; +} +.org-markdown-html-entity { + /* markdown-html-entity-face */ + color: #c6797e; +} +.org-markdown-html-tag-delimiter { + /* markdown-html-tag-delimiter-face */ + color: #64727d; +} +.org-markdown-html-tag-name { + /* markdown-html-tag-name-face */ + color: #b18bb1; + font-style: italic; +} +.org-markdown-italic { + /* markdown-italic-face */ + color: #5D80AE; + font-style: italic; +} +.org-markdown-language-info { + /* markdown-language-info-face */ + color: #A3B09A; +} +.org-markdown-language-keyword { + /* markdown-language-keyword-face */ + color: #c6797e; +} +.org-markdown-line-break { + /* markdown-line-break-face */ + color: #c6797e; + text-decoration: underline; +} +.org-markdown-link { + /* markdown-link-face */ + color: #B16E75; +} +.org-markdown-link-title { + /* markdown-link-title-face */ + color: #64727d; + font-style: italic; +} +.org-markdown-list { + /* markdown-list-face */ + color: #c6797e; +} +.org-markdown-markup { + /* markdown-markup-face */ + color: #64727d; +} +.org-markdown-math { + /* markdown-math-face */ + color: #A3B09A; +} +.org-markdown-metadata-key { + /* markdown-metadata-key-face */ + color: #c6797e; +} +.org-markdown-metadata-value { + /* markdown-metadata-value-face */ + color: #A3B09A; +} +.org-markdown-missing-link { + /* markdown-missing-link-face */ + color: #F7E3AF; +} +.org-markdown-plain-url { + /* markdown-plain-url-face */ + color: #B16E75; +} +.org-markdown-pre { + /* markdown-pre-face */ + color: #A3B09A; +} +.org-markdown-reference { + /* markdown-reference-face */ + color: #A3B09A; +} +.org-markdown-strike-through { + /* markdown-strike-through-face */ + text-decoration: line-through; +} +.org-markdown-url { + /* markdown-url-face */ + color: #b18bb1; +} +.org-match { + /* match */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} +.org-menu { +} +.org-message-cited-text-1 { + /* message-cited-text-1 */ + color: #F7E3AF; +} +.org-message-cited-text-2 { + /* message-cited-text-2 */ + color: #b18bb1; +} +.org-message-cited-text-3 { + /* message-cited-text-3 */ + color: #A3B09A; +} +.org-message-cited-text-4 { + /* message-cited-text-4 */ + color: #A3B09A; +} +.org-message-header-cc { + /* message-header-cc */ + color: #965d63; + font-weight: bold; +} +.org-message-header-name { + /* message-header-name */ + color: #A3B09A; +} +.org-message-header-newsgroups { + /* message-header-newsgroups */ + color: #F7E3AF; +} +.org-message-header-other { + /* message-header-other */ + color: #5D80AE; +} +.org-message-header-subject { + /* message-header-subject */ + color: #B16E75; + font-weight: bold; +} +.org-message-header-to { + /* message-header-to */ + color: #B16E75; + font-weight: bold; +} +.org-message-header-xheader { + /* message-header-xheader */ + color: #A3B09A; +} +.org-message-mml { + /* message-mml */ + color: #64727d; + font-style: italic; +} +.org-message-separator { + /* message-separator */ + color: #64727d; +} +.org-message-signature-separator { + /* message-signature-separator */ + font-weight: bold; +} +.org-minibuffer-prompt { + /* minibuffer-prompt */ + color: #B16E75; +} +.org-minuet-suggestion { + /* minuet-suggestion-face */ + color: #64727d; +} +.org-misc-punctuation { + /* font-lock-misc-punctuation-face */ + color: #e7e2e4; +} +.org-mm-command-output { + /* mm-command-output */ + color: #228b22; +} +.org-mm-uu-extract { + /* mm-uu-extract */ + color: #efe9e2; + background-color: #1f2230; +} +.org-mode-line { + /* mode-line */ + background-color: #0E131D; +} +.org-mode-line-active { + /* mode-line-active */ + background-color: #0E131D; +} +.org-mode-line-buffer-id { + /* mode-line-buffer-id */ + font-weight: bold; +} +.org-mode-line-buffer-id-inactive { + /* mode-line-buffer-id-inactive */ + font-weight: bold; +} +.org-mode-line-emphasis { + /* mode-line-emphasis */ + color: #B16E75; +} +.org-mode-line-highlight { + /* mode-line-highlight */ + color: #070A0E; + background-color: #B16E75; +} +.org-mode-line-inactive { + /* mode-line-inactive */ + color: #B16E75; + background-color: #141c2b; +} +.org-mouse { +} +.org-mouse-drag-and-drop-region { + /* mouse-drag-and-drop-region */ + background-color: #5D636E; +} +.org-negation-char { + /* font-lock-negation-char-face */ + color: #b18bb1; + font-weight: bold; +} +.org-nerd-icons-blue { + /* nerd-icons-blue */ + color: #6e94b9; +} +.org-nerd-icons-blue-alt { + /* nerd-icons-blue-alt */ + color: #7ea9a9; +} +.org-nerd-icons-cyan { + /* nerd-icons-cyan */ + color: #88C0D0; +} +.org-nerd-icons-cyan-alt { + /* nerd-icons-cyan-alt */ + color: #88C0D0; +} +.org-nerd-icons-dblue { + /* nerd-icons-dblue */ + color: #1E6378; +} +.org-nerd-icons-dcyan { + /* nerd-icons-dcyan */ + color: #507681; +} +.org-nerd-icons-dgreen { + /* nerd-icons-dgreen */ + color: #727b6b; +} +.org-nerd-icons-dmaroon { + /* nerd-icons-dmaroon */ + color: #7b617b; +} +.org-nerd-icons-dorange { + /* nerd-icons-dorange */ + color: #a3856b; +} +.org-nerd-icons-dpink { + /* nerd-icons-dpink */ + color: #ce8d91; +} +.org-nerd-icons-dpurple { + /* nerd-icons-dpurple */ + color: #415979; +} +.org-nerd-icons-dred { + /* nerd-icons-dred */ + color: #8a5458; +} +.org-nerd-icons-dsilver { + /* nerd-icons-dsilver */ + color: #73808a; +} +.org-nerd-icons-dyellow { + /* nerd-icons-dyellow */ + color: #ac9e7a; +} +.org-nerd-icons-green { + /* nerd-icons-green */ + color: #A3B09A; +} +.org-nerd-icons-lblue { + /* nerd-icons-lblue */ + color: #99b4ce; +} +.org-nerd-icons-lcyan { + /* nerd-icons-lcyan */ + color: #abd2de; +} +.org-nerd-icons-lgreen { + /* nerd-icons-lgreen */ + color: #bec7b8; +} +.org-nerd-icons-lmaroon { + /* nerd-icons-lmaroon */ + color: #c8adc8; +} +.org-nerd-icons-lorange { + /* nerd-icons-lorange */ + color: #f0d1b8; +} +.org-nerd-icons-lpink { + /* nerd-icons-lpink */ + color: #e5c2c4; +} +.org-nerd-icons-lpurple { + /* nerd-icons-lpurple */ + color: #8da6c6; +} +.org-nerd-icons-lred { + /* nerd-icons-lred */ + color: #d7a1a4; +} +.org-nerd-icons-lsilver { + /* nerd-icons-lsilver */ + color: #d0d4d8; +} +.org-nerd-icons-lyellow { + /* nerd-icons-lyellow */ + color: #f9ebc7; +} +.org-nerd-icons-maroon { + /* nerd-icons-maroon */ + color: #b18bb1; +} +.org-nerd-icons-orange { + /* nerd-icons-orange */ + color: #eabe9a; +} +.org-nerd-icons-pink { + /* nerd-icons-pink */ + color: #d9a7ab; +} +.org-nerd-icons-purple { + /* nerd-icons-purple */ + color: #5D80AE; +} +.org-nerd-icons-purple-alt { + /* nerd-icons-purple-alt */ + color: #627484; +} +.org-nerd-icons-red { + /* nerd-icons-red */ + color: #c6797e; +} +.org-nerd-icons-red-alt { + /* nerd-icons-red-alt */ + color: #72737d; +} +.org-nerd-icons-silver { + /* nerd-icons-silver */ + color: #a9b1b7; +} +.org-nerd-icons-yellow { + /* nerd-icons-yellow */ + color: #F7E3AF; +} +.org-next-error { + /* next-error */ + background-color: #5D636E; +} +.org-next-error-message { + /* next-error-message */ + color: #070A0E; + background-color: #B16E75; +} +.org-nix-antiquote { + /* nix-antiquote-face */ + color: #b18bb1; + font-style: italic; +} +.org-nix-attribute { + /* nix-attribute-face */ + color: #c6797e; +} +.org-nix-builtin { + /* nix-builtin-face */ + color: #DB6E8F; +} +.org-nix-constant { + /* nix-constant-face */ + color: #c6797e; +} +.org-nix-keyword { + /* nix-keyword-face */ + color: #b18bb1; + font-style: italic; +} +.org-nix-keyword-warning { + /* nix-keyword-warning-face */ + color: #F7E3AF; +} +.org-nobreak-hyphen { + /* nobreak-hyphen */ + color: #00ffff; +} +.org-nobreak-space { + /* nobreak-space */ + color: #88C0D0; + text-decoration: underline; +} +.org-number { + /* font-lock-number-face */ + color: #eabe9a; +} +.org-operator { + /* font-lock-operator-face */ + color: #b18bb1; +} +.org-org-agenda-calendar-daterange { + /* org-agenda-calendar-daterange */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-agenda-calendar-event { + /* org-agenda-calendar-event */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-agenda-calendar-sexp { + /* org-agenda-calendar-sexp */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-agenda-clocking { + /* org-agenda-clocking */ + background-color: #28374b; +} +.org-org-agenda-column-dateline { + /* org-agenda-column-dateline */ + background-color: #4d4d4d; +} +.org-org-agenda-current-time { + /* org-agenda-current-time */ + color: #64727d; +} +.org-org-agenda-date { + /* org-agenda-date */ + color: #5D80AE; +} +.org-org-agenda-date-today { + /* org-agenda-date-today */ + color: #9db2ce; +} +.org-org-agenda-date-weekend { + /* org-agenda-date-weekend */ + color: #374c68; +} +.org-org-agenda-date-weekend-today { + /* org-agenda-date-weekend-today */ + color: #9db2ce; +} +.org-org-agenda-diary { + /* org-agenda-diary */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-agenda-dimmed-todo { + /* org-agenda-dimmed-todo-face */ + color: #64727d; +} +.org-org-agenda-done { + /* org-agenda-done */ + color: #64727d; + font-weight: bold; +} +.org-org-agenda-filter-category { + /* org-agenda-filter-category */ + background-color: #0E131D; +} +.org-org-agenda-filter-effort { + /* org-agenda-filter-effort */ + background-color: #0E131D; +} +.org-org-agenda-filter-regexp { + /* org-agenda-filter-regexp */ + background-color: #0E131D; +} +.org-org-agenda-filter-tags { + /* org-agenda-filter-tags */ + background-color: #0E131D; +} +.org-org-agenda-restriction-lock { + /* org-agenda-restriction-lock */ + background-color: #1C1C1C; +} +.org-org-agenda-structure { + /* org-agenda-structure */ + color: #FAFFF6; +} +.org-org-agenda-structure-secondary { + /* org-agenda-structure-secondary */ + color: #FAFFF6; +} +.org-org-archived { + /* org-archived */ + color: #A3B09A; +} +.org-org-block { + /* org-block */ + background-color: #1F2A3F; +} +.org-org-block-begin-line { + /* org-block-begin-line */ + color: #64727d; + background-color: #1F2A3F; +} +.org-org-block-end-line { + /* org-block-end-line */ + color: #64727d; + background-color: #1F2A3F; +} +.org-org-checkbox { + /* org-checkbox */ + color: #A3B09A; + font-weight: bold; +} +.org-org-checkbox-statistics-done { + /* org-checkbox-statistics-done */ + color: #64727d; + font-weight: bold; +} +.org-org-checkbox-statistics-todo { + /* org-checkbox-statistics-todo */ + color: #A3B09A; + font-weight: bold; +} +.org-org-cite { + /* org-cite */ + color: #8ab1b0; +} +.org-org-cite-key { + /* org-cite-key */ + color: #afcbc7; + text-decoration: underline; +} +.org-org-clock-overlay { + /* org-clock-overlay */ + color: #ffffff; + background-color: #4a708b; +} +.org-org-code { + /* org-code */ + color: #eabe9a; + background-color: #1F2A3F; +} +.org-org-column { + /* org-column */ + background-color: #4d4d4d; +} +.org-org-column-title { + /* org-column-title */ + background-color: #4d4d4d; + font-weight: bold; + text-decoration: underline; +} +.org-org-date { + /* org-date */ + color: #F7E3AF; +} +.org-org-date-selected { + /* org-date-selected */ + color: #ffc0cb; +} +.org-org-dispatcher-highlight { + /* org-dispatcher-highlight */ + color: #ffd700; + background-color: #333333; + font-weight: bold; +} +.org-org-document-info { + /* org-document-info */ + color: #DB6E8F; +} +.org-org-document-info-keyword { + /* org-document-info-keyword */ + color: #64727d; +} +.org-org-document-title { + /* org-document-title */ + color: #DB6E8F; + font-weight: bold; +} +.org-org-done { + /* org-done */ + color: #64727d; + font-weight: bold; +} +.org-org-drawer { + /* org-drawer */ + color: #64727d; +} +.org-org-ellipsis { + /* org-ellipsis */ + color: #64727d; +} +.org-org-footnote { + /* org-footnote */ + color: #eabe9a; +} +.org-org-formula { + /* org-formula */ + color: #88C0D0; +} +.org-org-habit-alert { + /* org-habit-alert-face */ + background-color: #837d6b; + font-weight: bold; +} +.org-org-habit-alert-future { + /* org-habit-alert-future-face */ + background-color: #555450; + font-weight: bold; +} +.org-org-habit-clear { + /* org-habit-clear-face */ + background-color: #5D636E; + font-weight: bold; +} +.org-org-habit-clear-future { + /* org-habit-clear-future-face */ + background-color: #1F2A3F; + font-weight: bold; +} +.org-org-habit-overdue { + /* org-habit-overdue-face */ + background-color: #6b4853; + font-weight: bold; +} +.org-org-habit-overdue-future { + /* org-habit-overdue-future-face */ + background-color: #463541; + font-weight: bold; +} +.org-org-habit-ready { + /* org-habit-ready-face */ + background-color: #3f5670; + font-weight: bold; +} +.org-org-habit-ready-future { + /* org-habit-ready-future-face */ + background-color: #2c3d53; + font-weight: bold; +} +.org-org-headline-done { + /* org-headline-done */ + color: #64727d; +} +.org-org-headline-todo { + /* org-headline-todo */ + color: #eea9b8; +} +.org-org-hide { + /* org-hide */ + color: #172030; +} +.org-org-imminent-deadline { + /* org-imminent-deadline */ + color: #F7E3AF; +} +.org-org-indent { + /* org-indent */ + color: #172030; +} +.org-org-inline-src-block { + /* org-inline-src-block */ + background-color: #1F2A3F; +} +.org-org-journal-calendar-entry { + /* org-journal-calendar-entry-face */ + color: #b18bb1; + font-style: italic; +} +.org-org-journal-calendar-scheduled { + /* org-journal-calendar-scheduled-face */ + color: #c6797e; + font-style: italic; +} +.org-org-journal-highlight { + /* org-journal-highlight */ + color: #B16E75; +} +.org-org-latex-and-related { + /* org-latex-and-related */ + color: #F0F4FC; + font-weight: bold; +} +.org-org-level-1 { + /* org-level-1 */ + color: #6e94b9; + font-weight: bold; +} +.org-org-level-2 { + /* org-level-2 */ + color: #b18bb1; + font-weight: bold; +} +.org-org-level-3 { + /* org-level-3 */ + color: #5D80AE; + font-weight: bold; +} +.org-org-level-4 { + /* org-level-4 */ + color: #92aeca; + font-weight: bold; +} +.org-org-level-5 { + /* org-level-5 */ + color: #c4a8c4; + font-weight: bold; +} +.org-org-level-6 { + /* org-level-6 */ + color: #b6c9dc; + font-weight: bold; +} +.org-org-level-7 { + /* org-level-7 */ + color: #d8c4d8; + font-weight: bold; +} +.org-org-level-8 { + /* org-level-8 */ + color: #e2e9f1; + font-weight: bold; +} +.org-org-link { + /* org-link */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-org-list-dt { + /* org-list-dt */ + color: #B16E75; +} +.org-org-macro { + /* org-macro */ + color: #F0F4FC; + font-weight: bold; +} +.org-org-meta-line { + /* org-meta-line */ + color: #A3B09A; +} +.org-org-mode-line-clock { + /* org-mode-line-clock */ + background-color: #0E131D; +} +.org-org-mode-line-clock-overrun { + /* org-mode-line-clock-overrun */ + background-color: #ff0000; +} +.org-org-priority { + /* org-priority */ + color: #c6797e; +} +.org-org-property-value { + /* org-property-value */ + color: #A3B09A; +} +.org-org-quote { + /* org-quote */ + background-color: #1F2A3F; + font-style: italic; +} +.org-org-roam-dim { + /* org-roam-dim */ + color: #666666; +} +.org-org-roam-header-line { + /* org-roam-header-line */ + color: #eedc82; + font-weight: bold; +} +.org-org-roam-olp { + /* org-roam-olp */ + color: #666666; +} +.org-org-roam-preview-heading { + /* org-roam-preview-heading */ + color: #b3b3b3; + background-color: #404040; +} +.org-org-roam-preview-heading-highlight { + /* org-roam-preview-heading-highlight */ + color: #b3b3b3; + background-color: #595959; +} +.org-org-roam-preview-heading-selection { + /* org-roam-preview-heading-selection */ + color: #cd8162; + background-color: #595959; +} +.org-org-roam-preview-region { + /* org-roam-preview-region */ + font-weight: bold; +} +.org-org-roam-title { + /* org-roam-title */ + font-weight: bold; +} +.org-org-scheduled { + /* org-scheduled */ + color: #FAFFF6; +} +.org-org-scheduled-previously { + /* org-scheduled-previously */ + color: #F0F4FC; +} +.org-org-scheduled-today { + /* org-scheduled-today */ + color: #E8E9EB; +} +.org-org-sexp-date { + /* org-sexp-date */ + color: #FAFFF6; +} +.org-org-special-keyword { + /* org-special-keyword */ + color: #A3B09A; +} +.org-org-superstar-first { + /* org-superstar-first */ + color: #F7E3AF; +} +.org-org-superstar-item { + /* org-superstar-item */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-superstar-leading { + /* org-superstar-leading */ + color: #bebebe; + background-color: #172030; +} +.org-org-superstar-ordered-item { + /* org-superstar-ordered-item */ + color: #FAFFF6; + background-color: #172030; +} +.org-org-table { + /* org-table */ + color: #5D80AE; +} +.org-org-table-header { + /* org-table-header */ + color: #000000; + background-color: #d3d3d3; +} +.org-org-table-row { + /* org-table-row */ + color: #5D80AE; +} +.org-org-tag { + /* org-tag */ + color: #A3B09A; +} +.org-org-tag-group { + /* org-tag-group */ + color: #A3B09A; +} +.org-org-target { + /* org-target */ + text-decoration: underline; +} +.org-org-time-grid { + /* org-time-grid */ + color: #64727d; +} +.org-org-todo { + /* org-todo */ + color: #A3B09A; + font-weight: bold; +} +.org-org-upcoming-deadline { + /* org-upcoming-deadline */ + color: #ccd2ce; +} +.org-org-upcoming-distant-deadline { + /* org-upcoming-distant-deadline */ + color: #888f93; +} +.org-org-verbatim { + /* org-verbatim */ + color: #A3B09A; +} +.org-org-verse { + /* org-verse */ + background-color: #1F2A3F; +} +.org-org-warning { + /* org-warning */ + color: #F7E3AF; +} +.org-outline-1 { + /* outline-1 */ + color: #6e94b9; + font-weight: bold; +} +.org-outline-2 { + /* outline-2 */ + color: #b18bb1; + font-weight: bold; +} +.org-outline-3 { + /* outline-3 */ + color: #5D80AE; + font-weight: bold; +} +.org-outline-4 { + /* outline-4 */ + color: #92aeca; + font-weight: bold; +} +.org-outline-5 { + /* outline-5 */ + color: #c4a8c4; + font-weight: bold; +} +.org-outline-6 { + /* outline-6 */ + color: #b6c9dc; + font-weight: bold; +} +.org-outline-7 { + /* outline-7 */ + color: #d8c4d8; + font-weight: bold; +} +.org-outline-8 { + /* outline-8 */ + color: #e2e9f1; + font-weight: bold; +} +.org-package-description { + /* package-description */ + color: #FAFFF6; + background-color: #172030; +} +.org-package-name { + /* package-name */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-package-status-avail-obso { + /* package-status-avail-obso */ + color: #c6797e; +} +.org-package-status-available { + /* package-status-available */ + color: #FAFFF6; + background-color: #172030; +} +.org-package-status-built-in { + /* package-status-built-in */ + color: #DB6E8F; +} +.org-package-status-dependency { + /* package-status-dependency */ + color: #64727d; + font-style: italic; +} +.org-package-status-disabled { + /* package-status-disabled */ + color: #F7E3AF; +} +.org-package-status-external { + /* package-status-external */ + color: #DB6E8F; +} +.org-package-status-from-source { + /* package-status-from-source */ + color: #b18bb1; + font-weight: bold; +} +.org-package-status-held { + /* package-status-held */ + color: #c6797e; +} +.org-package-status-incompat { + /* package-status-incompat */ + color: #c6797e; +} +.org-package-status-installed { + /* package-status-installed */ + color: #64727d; + font-style: italic; +} +.org-package-status-unsigned { + /* package-status-unsigned */ + color: #F7E3AF; +} +.org-page-break-lines { + /* page-break-lines */ + color: #64727d; +} +.org-powerline-active0 { + /* powerline-active0 */ + background-color: #172030; +} +.org-powerline-active1 { + /* powerline-active1 */ + background-color: #1c2535; +} +.org-powerline-active2 { + /* powerline-active2 */ + color: #F0F4FC; + background-color: #293140; +} +.org-powerline-inactive0 { + /* powerline-inactive0 */ + color: #B16E75; + background-color: #151D2B; +} +.org-powerline-inactive1 { + /* powerline-inactive1 */ + color: #B16E75; + background-color: #19212f; +} +.org-powerline-inactive2 { + /* powerline-inactive2 */ + color: #B16E75; + background-color: #1e2633; +} +.org-preprocessor { + /* font-lock-preprocessor-face */ + color: #b18bb1; + font-style: italic; +} +.org-property-name { + /* font-lock-property-name-face */ + color: #ceb9cc; + font-weight: bold; +} +.org-property-use { + /* font-lock-property-use-face */ + color: #ceb9cc; +} +.org-pulse-highlight { + /* pulse-highlight-face */ + background-color: #AAAA33; +} +.org-pulse-highlight-start { + /* pulse-highlight-start-face */ + background-color: #AAAA33; +} +.org-punctuation { + /* font-lock-punctuation-face */ + color: #e7e2e4; +} +.org-query-replace { + /* query-replace */ + background-color: #5D636E; + font-weight: bold; +} +.org-rectangle-preview { + /* rectangle-preview */ + background-color: #5D636E; +} +.org-regexp { + /* font-lock-regexp-face */ + color: #A3B09A; +} +.org-regexp-grouping-backslash { + /* font-lock-regexp-grouping-backslash */ + color: #b18bb1; + font-weight: bold; +} +.org-regexp-grouping-construct { + /* font-lock-regexp-grouping-construct */ + color: #b18bb1; + font-weight: bold; +} +.org-region { + /* region */ + background-color: #5D636E; +} +.org-secondary-selection { + /* secondary-selection */ + background-color: #64727d; +} +.org-separator-line { + /* separator-line */ + background-color: #505050; + font-size: 10%; +} +.org-sh-escaped-newline { + /* sh-escaped-newline */ + color: #A3B09A; +} +.org-sh-heredoc { + /* sh-heredoc */ + color: #A3B09A; +} +.org-sh-quoted-exec { + /* sh-quoted-exec */ + color: #b18bb1; + font-style: italic; +} +.org-shadow { + /* shadow */ + color: #64727d; +} +.org-show-paren-match { + /* show-paren-match */ + color: #c6797e; + background-color: #1F2A3F; +} +.org-show-paren-match-expression { + /* show-paren-match-expression */ + color: #c6797e; + background-color: #1F2A3F; +} +.org-show-paren-mismatch { + /* show-paren-mismatch */ + color: #1F2A3F; + background-color: #c6797e; +} +.org-shr-abbreviation { + /* shr-abbreviation */ + text-decoration: underline; +} +.org-shr-h1 { + /* shr-h1 */ + font-size: 130%; + font-weight: bold; +} +.org-shr-h2 { + /* shr-h2 */ + font-weight: bold; +} +.org-shr-h3 { + /* shr-h3 */ + font-style: italic; +} +.org-shr-h4 { + /* shr-h4 */ + color: #FAFFF6; + background-color: #172030; +} +.org-shr-h5 { + /* shr-h5 */ + color: #FAFFF6; + background-color: #172030; +} +.org-shr-h6 { + /* shr-h6 */ + color: #FAFFF6; + background-color: #172030; +} +.org-shr-link { + /* shr-link */ + color: #B16E75; + font-weight: bold; + text-decoration: underline; +} +.org-shr-mark { + /* shr-mark */ + color: #000000; + background-color: #ffff00; +} +.org-shr-selected-link { + /* shr-selected-link */ + color: #B16E75; + background-color: #ff0000; + font-weight: bold; + text-decoration: underline; +} +.org-shr-strike-through { + /* shr-strike-through */ + text-decoration: line-through; +} +.org-shr-sup { + /* shr-sup */ + font-size: 80%; +} +.org-shr-text { + /* shr-text */ + font-size: 110%; +} +.org-smerge-base { + /* smerge-base */ + background-color: #28374b; +} +.org-smerge-lower { + /* smerge-lower */ + background-color: #333c45; +} +.org-smerge-markers { + /* smerge-markers */ + color: #172030; + background-color: #64727d; + font-weight: bold; +} +.org-smerge-refined-added { + /* smerge-refined-added */ + color: #A3B09A; + background-color: #101828; +} +.org-smerge-refined-removed { + /* smerge-refined-removed */ + color: #c6797e; + background-color: #1F2A3F; +} +.org-smerge-upper { + /* smerge-upper */ + background-color: #40394b; +} +.org-string { + /* font-lock-string-face */ + color: #A3B09A; +} +.org-success { + /* success */ + color: #A3B09A; +} +.org-swiper-background-match-face-1 { + /* swiper-background-match-face-1 */ + color: #64727d; + background-color: #2a32b13bfb; +} +.org-swiper-background-match-face-2 { + /* swiper-background-match-face-2 */ + color: #070A0E; + background-color: #f53adcf9c6f0; + font-weight: bold; +} +.org-swiper-background-match-face-3 { + /* swiper-background-match-face-3 */ + color: #070A0E; + background-color: #d547bd00d547; + font-weight: bold; +} +.org-swiper-background-match-face-4 { + /* swiper-background-match-face-4 */ + color: #070A0E; + background-color: #ccabd4adc6f0; + font-weight: bold; +} +.org-swiper-line { + /* swiper-line-face */ + color: #070A0E; + background-color: #6e94b9; +} +.org-swiper-match-face-1 { + /* swiper-match-face-1 */ + color: #64727d; + background-color: #070A0E; +} +.org-swiper-match-face-2 { + /* swiper-match-face-2 */ + color: #070A0E; + background-color: #eabe9a; + font-weight: bold; +} +.org-swiper-match-face-3 { + /* swiper-match-face-3 */ + color: #070A0E; + background-color: #b18bb1; + font-weight: bold; +} +.org-swiper-match-face-4 { + /* swiper-match-face-4 */ + color: #070A0E; + background-color: #A3B09A; + font-weight: bold; +} +.org-tab-bar { + /* tab-bar */ + color: #101828; + background-color: #101828; +} +.org-tab-bar-tab { + /* tab-bar-tab */ + color: #FAFFF6; + background-color: #172030; +} +.org-tab-bar-tab-group-current { + /* tab-bar-tab-group-current */ + color: #FAFFF6; + background-color: #172030; + font-weight: bold; +} +.org-tab-bar-tab-inactive { + /* tab-bar-tab-inactive */ + color: #A7ACB9; + background-color: #101828; +} +.org-tab-line { + /* tab-line */ + color: #101828; + background-color: #101828; +} +.org-table-cell { + /* table-cell */ + color: #e5e5e5; + background-color: #0000ff; +} +.org-tabulated-list-fake-header { + /* tabulated-list-fake-header */ + font-weight: bold; + text-decoration: underline; + text-decoration: overline; +} +.org-term { + /* term */ + color: #FAFFF6; +} +.org-term-bold { + /* term-bold */ + font-weight: bold; +} +.org-term-color-black { + /* term-color-black */ + color: #070A0E; + background-color: #070A0E; +} +.org-term-color-blue { + /* term-color-blue */ + color: #6e94b9; + background-color: #6e94b9; +} +.org-term-color-bright-black { + /* term-color-bright-black */ + color: #B16E75; + background-color: #B16E75; +} +.org-term-color-bright-blue { + /* term-color-bright-blue */ + color: #83a4c3; + background-color: #83a4c3; +} +.org-term-color-bright-cyan { + /* term-color-bright-cyan */ + color: #99c9d7; + background-color: #99c9d7; +} +.org-term-color-bright-green { + /* term-color-bright-green */ + color: #b0bba9; + background-color: #b0bba9; +} +.org-term-color-bright-magenta { + /* term-color-bright-magenta */ + color: #bc9cbc; + background-color: #bc9cbc; +} +.org-term-color-bright-red { + /* term-color-bright-red */ + color: #ce8d91; + background-color: #ce8d91; +} +.org-term-color-bright-white { + /* term-color-bright-white */ + color: #F0F4FC; + background-color: #F0F4FC; +} +.org-term-color-bright-yellow { + /* term-color-bright-yellow */ + color: #f8e7bb; + background-color: #f8e7bb; +} +.org-term-color-cyan { + /* term-color-cyan */ + color: #88C0D0; + background-color: #88C0D0; +} +.org-term-color-green { + /* term-color-green */ + color: #A3B09A; + background-color: #A3B09A; +} +.org-term-color-magenta { + /* term-color-magenta */ + color: #b18bb1; + background-color: #b18bb1; +} +.org-term-color-red { + /* term-color-red */ + color: #c6797e; + background-color: #c6797e; +} +.org-term-color-white { + /* term-color-white */ + color: #F0F4FC; + background-color: #F0F4FC; +} +.org-term-color-yellow { + /* term-color-yellow */ + color: #F7E3AF; + background-color: #F7E3AF; +} +.org-term-italic { + /* term-italic */ + font-style: italic; +} +.org-term-underline { + /* term-underline */ + text-decoration: underline; +} +.org-tool-bar { + /* tool-bar */ + color: #000000; + background-color: #bfbfbf; +} +.org-tooltip { + /* tooltip */ + color: #A7ACB9; + background-color: #1F2A3F; +} +.org-trailing-whitespace { + /* trailing-whitespace */ + background-color: #c6797e; +} +.org-transient-active-infix { + /* transient-active-infix */ + color: #070A0E; + background-color: #B16E75; +} +.org-transient-argument { + /* transient-argument */ + color: #A3B09A; + font-weight: bold; +} +.org-transient-delimiter { + /* transient-delimiter */ + color: #64727d; +} +.org-transient-disabled-suffix { + /* transient-disabled-suffix */ + color: #000000; + background-color: #ff0000; + font-weight: bold; +} +.org-transient-enabled-suffix { + /* transient-enabled-suffix */ + color: #000000; + background-color: #00ff00; + font-weight: bold; +} +.org-transient-heading { + /* transient-heading */ + color: #b18bb1; + font-style: italic; +} +.org-transient-inactive-argument { + /* transient-inactive-argument */ + color: #64727d; +} +.org-transient-inactive-value { + /* transient-inactive-value */ + color: #64727d; +} +.org-transient-inapt-argument { + /* transient-inapt-argument */ + color: #64727d; + font-weight: bold; +} +.org-transient-inapt-suffix { + /* transient-inapt-suffix */ + color: #64727d; + font-style: italic; +} +.org-transient-key { + /* transient-key */ + color: #DB6E8F; +} +.org-transient-key-exit { + /* transient-key-exit */ + color: #ffdddd; +} +.org-transient-key-noop { + /* transient-key-noop */ + color: #4d4d4d; +} +.org-transient-key-recurse { + /* transient-key-recurse */ + color: #2299ff; +} +.org-transient-key-return { + /* transient-key-return */ + color: #ffffcc; +} +.org-transient-key-stack { + /* transient-key-stack */ + color: #ff6699; +} +.org-transient-key-stay { + /* transient-key-stay */ + color: #ddffdd; +} +.org-transient-unreachable { + /* transient-unreachable */ + color: #64727d; +} +.org-transient-value { + /* transient-value */ + color: #A3B09A; + font-weight: bold; +} +.org-treemacs-fringe-indicator { + /* treemacs-fringe-indicator-face */ + color: #B16E75; +} +.org-treemacs-help-column { + /* treemacs-help-column-face */ + color: #b18bb1; + font-style: italic; + text-decoration: underline; +} +.org-treemacs-help-title { + /* treemacs-help-title-face */ + color: #c6797e; +} +.org-treemacs-hl-line { + /* treemacs-hl-line-face */ + background-color: #101828; +} +.org-treemacs-marked-file { + /* treemacs-marked-file-face */ + color: #F0C674; + background-color: #AB3737; + font-weight: bold; +} +.org-treemacs-on-failure-pulse { + /* treemacs-on-failure-pulse-face */ + color: #070A0E; + background-color: #c6797e; +} +.org-treemacs-on-success-pulse { + /* treemacs-on-success-pulse-face */ + color: #070A0E; + background-color: #A3B09A; +} +.org-treemacs-peek-mode-indicator { + /* treemacs-peek-mode-indicator-face */ + background-color: #669966; +} +.org-treemacs-root-remote-unreadable { + /* treemacs-root-remote-unreadable-face */ + color: #B16E75; + font-size: 120%; + text-decoration: line-through; +} +.org-treemacs-root-unreadable { + /* treemacs-root-unreadable-face */ + color: #B16E75; + font-size: 120%; + text-decoration: line-through; +} +.org-treemacs-term-node { + /* treemacs-term-node-face */ + color: #A3B09A; +} +.org-treemacs-window-background { + /* treemacs-window-background-face */ + color: #FAFFF6; + background-color: #172030; +} +.org-treesit-explorer-anonymous-node { + /* treesit-explorer-anonymous-node */ + color: #64727d; +} +.org-tty-menu-disabled { + /* tty-menu-disabled-face */ + color: #d3d3d3; + background-color: #0000ff; +} +.org-tty-menu-enabled { + /* tty-menu-enabled-face */ + color: #ffff00; + background-color: #0000ff; + font-weight: bold; +} +.org-tty-menu-selected { + /* tty-menu-selected-face */ + background-color: #ff0000; +} +.org-type { + /* font-lock-type-face */ + color: #c6797e; +} +.org-underline { + /* underline */ + text-decoration: underline; +} +.org-variable-name { + /* font-lock-variable-name-face */ + color: #c6797e; +} +.org-variable-pitch-text { + /* variable-pitch-text */ + font-size: 110%; +} +.org-variable-use { + /* font-lock-variable-use-face */ + color: #e0bcba; +} +.org-vc-git-log-edit-summary-max-warning { + /* vc-git-log-edit-summary-max-warning */ + color: #c6797e; +} +.org-vc-git-log-edit-summary-target-warning { + /* vc-git-log-edit-summary-target-warning */ + color: #F7E3AF; +} +.org-vertical-border { + /* vertical-border */ + color: #B16E75; +} +.org-vterm-color-black { + /* vterm-color-black */ + color: #070A0E; + background-color: #45474a; +} +.org-vterm-color-blue { + /* vterm-color-blue */ + color: #6e94b9; + background-color: #92aeca; +} +.org-vterm-color-bright-black { + /* vterm-color-bright-black */ + color: #B16E75; + background-color: #B16E75; +} +.org-vterm-color-bright-blue { + /* vterm-color-bright-blue */ + color: #83a4c3; + background-color: #83a4c3; +} +.org-vterm-color-bright-cyan { + /* vterm-color-bright-cyan */ + color: #99c9d7; + background-color: #99c9d7; +} +.org-vterm-color-bright-green { + /* vterm-color-bright-green */ + color: #b0bba9; + background-color: #b0bba9; +} +.org-vterm-color-bright-magenta { + /* vterm-color-bright-magenta */ + color: #bc9cbc; + background-color: #bc9cbc; +} +.org-vterm-color-bright-red { + /* vterm-color-bright-red */ + color: #ce8d91; + background-color: #ce8d91; +} +.org-vterm-color-bright-white { + /* vterm-color-bright-white */ + color: #F0F4FC; + background-color: #F0F4FC; +} +.org-vterm-color-bright-yellow { + /* vterm-color-bright-yellow */ + color: #f8e7bb; + background-color: #f8e7bb; +} +.org-vterm-color-cyan { + /* vterm-color-cyan */ + color: #88C0D0; + background-color: #a5cfdb; +} +.org-vterm-color-green { + /* vterm-color-green */ + color: #A3B09A; + background-color: #bac3b3; +} +.org-vterm-color-inverse-video { + /* vterm-color-inverse-video */ + color: #FAFFF6; + background-color: #172030; +} +.org-vterm-color-magenta { + /* vterm-color-magenta */ + color: #b18bb1; + background-color: #c4a8c4; +} +.org-vterm-color-red { + /* vterm-color-red */ + color: #c6797e; + background-color: #d49a9e; +} +.org-vterm-color-underline { + /* vterm-color-underline */ + color: #FAFFF6; + background-color: #172030; +} +.org-vterm-color-white { + /* vterm-color-white */ + color: #F0F4FC; + background-color: #f3f6fc; +} +.org-vterm-color-yellow { + /* vterm-color-yellow */ + color: #F7E3AF; + background-color: #f9eac3; +} +.org-warning { + /* warning */ + color: #F7E3AF; +} +.org-warning-1 { + /* font-lock-warning-face */ + color: #F7E3AF; +} +.org-wgrep { + /* wgrep-face */ + color: #A3B09A; + background-color: #64727d; + font-weight: bold; +} +.org-wgrep-delete { + /* wgrep-delete-face */ + color: #1F2A3F; + background-color: #c6797e; +} +.org-wgrep-done { + /* wgrep-done-face */ + color: #6e94b9; +} +.org-wgrep-file { + /* wgrep-file-face */ + color: #64727d; +} +.org-wgrep-reject { + /* wgrep-reject-face */ + color: #c6797e; + font-weight: bold; +} +.org-which-func { + /* which-func */ + color: #6e94b9; +} +.org-which-key-command-description { + /* which-key-command-description-face */ + color: #6e94b9; +} +.org-which-key-docstring { + /* which-key-docstring-face */ + color: #64727d; + font-style: italic; +} +.org-which-key-group-description { + /* which-key-group-description-face */ + color: #5D80AE; +} +.org-which-key-key { + /* which-key-key-face */ + color: #A3B09A; +} +.org-which-key-local-map-description { + /* which-key-local-map-description-face */ + color: #b18bb1; +} +.org-which-key-note { + /* which-key-note-face */ + color: #64727d; + font-style: italic; +} +.org-which-key-separator { + /* which-key-separator-face */ + color: #64727d; + font-style: italic; +} +.org-which-key-special-key { + /* which-key-special-key-face */ + color: #A3B09A; + font-weight: bold; +} +.org-widget-button { + /* widget-button */ + font-weight: bold; +} +.org-widget-button-pressed { + /* widget-button-pressed */ + color: #c6797e; +} +.org-widget-documentation { + /* widget-documentation */ + color: #A3B09A; +} +.org-widget-field { + /* widget-field */ + background-color: #1F2A3F; +} +.org-widget-inactive { + /* widget-inactive */ + color: #64727d; +} +.org-widget-single-line-field { + /* widget-single-line-field */ + background-color: #1F2A3F; +} +.org-widget-unselected { + /* widget-unselected */ + color: #64727d; +} +.org-window-divider { + /* window-divider */ + color: #B16E75; +} +.org-window-divider-first-pixel { + /* window-divider-first-pixel */ + color: #B16E75; +} +.org-window-divider-last-pixel { + /* window-divider-last-pixel */ + color: #B16E75; +} +.org-world-clock-label { + /* world-clock-label */ + color: #c6797e; +} +.org-writegood-duplicates { + /* writegood-duplicates-face */ + text-decoration: underline; +} +.org-writegood-passive-voice { + /* writegood-passive-voice-face */ + text-decoration: underline; +} +.org-writegood-weasels { + /* writegood-weasels-face */ + text-decoration: underline; +} +.org-xref-file-header { + /* xref-file-header */ + color: #A3B09A; +} +.org-xref-line-number { + /* xref-line-number */ + color: #B16E75; +} +.org-xref-match { + /* xref-match */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} +.org-yaml-tab { + /* yaml-tab-face */ + color: #ff0000; + background-color: #ff0000; + font-weight: bold; +} +.org-yas-field-highlight { + /* yas-field-highlight-face */ + color: #A3B09A; + background-color: #070A0E; + font-weight: bold; +} -- cgit v1.3 From 44fff74c17edc9039504974b27ae921c60a1742b Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Mar 2026 17:31:58 -0800 Subject: good version on branch --- index.org | 2 +- style.css | 28 +++++++++++++++++++++++++--- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/index.org b/index.org index c4b0bf0..e521e29 100644 --- a/index.org +++ b/index.org @@ -1,4 +1,4 @@ -#+title: Introducing ret2pop +#+title: Introducing Ret2pop #+author: Preston Pan #+date: <2023-06-09 Fri> #+description: A website full of wonder and explanation diff --git a/style.css b/style.css index e527d7a..91993f0 100644 --- a/style.css +++ b/style.css @@ -487,8 +487,9 @@ header, .title + p, .subtitle + p { a { display: block; - width: 218px; - padding: 10px 16px; + width: 100%; + padding: 10px 16px 10px 32px; + box-sizing: border-box; font-size: 13px; font-family: var(--font-mono); white-space: nowrap; @@ -496,7 +497,6 @@ header, .title + p, .subtitle + p { text-overflow: ellipsis; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); border-left: 3px solid transparent; - padding-left: 32px; opacity: 0.8; &, &:visited { @@ -511,6 +511,28 @@ header, .title + p, .subtitle + p { border-left: 3px solid var(--accent); } } + ul { + a { + padding-left: 48px; + opacity: 0.55; + font-size: 12px; + + &:hover { + padding-left: 38px; + opacity: 1; + } + } + + ul a { + padding-left: 64px; + opacity: 0.4; + + &:hover { + padding-left: 54px; + } + } + + } } h2 { display: none !important; } -- cgit v1.3 From d15f074f583da6808b50c81f3ec779d8ab215ac3 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Mar 2026 17:56:31 -0800 Subject: add author to everything --- blog/acausal.org | 1 + blog/automation.org | 1 + blog/cognition.org | 1 + blog/crypto.org | 1 + blog/horses.org | 1 + blog/manifesto-1.org | 4 ++-- blog/private_keys.org | 1 + blog/stem.org | 1 + blog/tech-bros.org | 1 + blog/voting.org | 1 + blog/you_dont_matter.org | 1 + style.css | 9 +++++++++ yasnippet/org-mode/blognew | 3 ++- 13 files changed, 23 insertions(+), 3 deletions(-) diff --git a/blog/acausal.org b/blog/acausal.org index 5ee0150..d3b923b 100644 --- a/blog/acausal.org +++ b/blog/acausal.org @@ -1,5 +1,6 @@ #+title: Consciousness and the Universal Handshake #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Narrative is the only real construction. #+html_head: #+html_head: diff --git a/blog/automation.org b/blog/automation.org index c79cba1..3ca71fc 100644 --- a/blog/automation.org +++ b/blog/automation.org @@ -1,5 +1,6 @@ #+title: Automation, Hypocrisy, and Capitalism #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Is automation taking jobs? Is capitalism causing all the world's problems? #+html_head: #+html_head: diff --git a/blog/cognition.org b/blog/cognition.org index b607660..2b15bc8 100644 --- a/blog/cognition.org +++ b/blog/cognition.org @@ -1,5 +1,6 @@ #+title: Cognition #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Other languages are inflexible and broken. Let's fix that. #+html_head: #+html_head: diff --git a/blog/crypto.org b/blog/crypto.org index 915606e..1a1ebb8 100644 --- a/blog/crypto.org +++ b/blog/crypto.org @@ -1,5 +1,6 @@ #+title: A Review of Cryptocurrency #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Are cryptocurrencies useful in economic transactions? As technologies? #+html_head: #+html_head: diff --git a/blog/horses.org b/blog/horses.org index 16b728c..31baa96 100644 --- a/blog/horses.org +++ b/blog/horses.org @@ -1,4 +1,5 @@ #+title: Stop Asking for Better Horses +#+subtitle: By {{{author}}} #+author: Preston Pan #+description: It doesn't happen instantly. #+html_head: diff --git a/blog/manifesto-1.org b/blog/manifesto-1.org index 73ec6ae..06666e7 100644 --- a/blog/manifesto-1.org +++ b/blog/manifesto-1.org @@ -1,5 +1,7 @@ #+title: The End of Equality and The Technocratic Imperative #+author: Preston Pan +#+subtitle: By {{{author}}} + #+description: A system built on illusions will always decay. #+html_head: #+html_head: @@ -12,8 +14,6 @@ #+language: en #+OPTIONS: broken-links:t -@@html:By Preston Pan@@ - * Introduction Our current economic and political system isn't totally failing right now, but it's pretty close. Everyone agrees that our current system diff --git a/blog/private_keys.org b/blog/private_keys.org index 37a2c87..9d4b9f7 100644 --- a/blog/private_keys.org +++ b/blog/private_keys.org @@ -1,5 +1,6 @@ #+title: Passwords Are Obselete #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Why haven't we switched to asymmetric cryptography? #+html_head: #+html_head: diff --git a/blog/stem.org b/blog/stem.org index 15e0544..ec9dde4 100644 --- a/blog/stem.org +++ b/blog/stem.org @@ -1,5 +1,6 @@ #+title: Stem #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: My own concatenative programming language #+html_head: #+language: en diff --git a/blog/tech-bros.org b/blog/tech-bros.org index a5b452a..2b302fc 100644 --- a/blog/tech-bros.org +++ b/blog/tech-bros.org @@ -1,5 +1,6 @@ #+title: Tech Bros #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: and other people that other people hate. #+html_head: #+html_head: diff --git a/blog/voting.org b/blog/voting.org index 3c5d5e8..6a0701d 100644 --- a/blog/voting.org +++ b/blog/voting.org @@ -1,5 +1,6 @@ #+title: Representative Voting #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: What do we do about voter turnout? Voting demographics? Polarization? #+html_head: #+html_head: diff --git a/blog/you_dont_matter.org b/blog/you_dont_matter.org index efa4ca3..5eaa9ca 100644 --- a/blog/you_dont_matter.org +++ b/blog/you_dont_matter.org @@ -1,5 +1,6 @@ #+title: You Don't Matter #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: Ideas aren't real, and morality is a spook. #+html_head: #+html_head: diff --git a/style.css b/style.css index 91993f0..452a13b 100644 --- a/style.css +++ b/style.css @@ -453,6 +453,15 @@ header, .title + p, .subtitle + p { background-color: #ffd2d2; } +.title + .subtitle { + text-align: center; + font-style: italic; + padding-bottom: 30px; + margin-top: -10px; + color: #555; + display: block; +} + #table-of-contents { height: 100vh; width: 250px; diff --git a/yasnippet/org-mode/blognew b/yasnippet/org-mode/blognew index 39899fb..da28363 100644 --- a/yasnippet/org-mode/blognew +++ b/yasnippet/org-mode/blognew @@ -4,7 +4,9 @@ # -- #+title: $1 #+author: Preston Pan +#+subtitle: By {{{author}}} #+description: $2 +#+date: [`(format-time-string "%Y-%m-%d %a")`] #+html_head: #+html_head: #+html_head: @@ -13,7 +15,6 @@ #+html_head: #+html_head: #+html_head: -#+html_head: #+language: en #+OPTIONS: broken-links:t -- cgit v1.3 From b1cc96139c2cc2c8de7c74884021f8645e54de87 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Mar 2026 18:29:14 -0800 Subject: this looks good? Checkpoint --- LICENSE.org | 35 +++ LICENSE.txt | 674 --------------------------------------------- README.org | 2 +- blog/acausal.org | 3 +- blog/automation.org | 3 +- blog/cognition.org | 3 +- blog/crypto.org | 4 +- blog/horses.org | 3 +- blog/manifesto-1.org | 3 +- blog/monorepo.org | 2 + blog/nixos.org | 2 + blog/private_keys.org | 3 +- blog/stem.org | 4 +- blog/tech-bros.org | 4 +- blog/voting.org | 4 +- blog/you_dont_matter.org | 4 +- yasnippet/org-mode/blognew | 4 +- 17 files changed, 69 insertions(+), 688 deletions(-) create mode 100644 LICENSE.org delete mode 100644 LICENSE.txt diff --git a/LICENSE.org b/LICENSE.org new file mode 100644 index 0000000..0d9adf5 --- /dev/null +++ b/LICENSE.org @@ -0,0 +1,35 @@ +#+TITLE: MIT License +#+AUTHOR: Preston Pan +#+DATE: 2026 +#+html_head: +#+language: en +#+OPTIONS: broken-links:t +#+date: <2025-01-09 Thu> +#+html_head: +#+html_head: +#+html_head: +#+html_head: +#+html_head: +#+html_head: +#+html_head: + +* License +Copyright (c) {{{date}}} {{{author}}} + +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. diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index f288702..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/README.org b/README.org index 4f6e6ba..f45086f 100644 --- a/README.org +++ b/README.org @@ -34,4 +34,4 @@ In emacs, run ~M-x all-the-icons-install-fonts, ~~M-x nerd-icons-install-fonts~, emms. In firefox, go to the three-bar menu and enable all the add-ons that were automatically installed. Set up the ~mu~ program in order to send and receive email, along with modifying the corresponding mbsync and msmtp commands. Change ~nix/flakevars.nix~ to your liking. * License -See the [[file:LICENSE.txt][license]]. The style.css has its own license. +See the [[file:LICENSE.org][license]]. diff --git a/blog/acausal.org b/blog/acausal.org index d3b923b..30ac40a 100644 --- a/blog/acausal.org +++ b/blog/acausal.org @@ -1,6 +1,7 @@ #+title: Consciousness and the Universal Handshake #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: Narrative is the only real construction. #+html_head: #+html_head: diff --git a/blog/automation.org b/blog/automation.org index 3ca71fc..981560d 100644 --- a/blog/automation.org +++ b/blog/automation.org @@ -1,6 +1,7 @@ #+title: Automation, Hypocrisy, and Capitalism #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: Is automation taking jobs? Is capitalism causing all the world's problems? #+html_head: #+html_head: diff --git a/blog/cognition.org b/blog/cognition.org index 2b15bc8..23ea939 100644 --- a/blog/cognition.org +++ b/blog/cognition.org @@ -1,6 +1,7 @@ #+title: Cognition #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: Other languages are inflexible and broken. Let's fix that. #+html_head: #+html_head: diff --git a/blog/crypto.org b/blog/crypto.org index 1a1ebb8..bd965d8 100644 --- a/blog/crypto.org +++ b/blog/crypto.org @@ -1,6 +1,8 @@ #+title: A Review of Cryptocurrency #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 + #+description: Are cryptocurrencies useful in economic transactions? As technologies? #+html_head: #+html_head: diff --git a/blog/horses.org b/blog/horses.org index 31baa96..dc0f683 100644 --- a/blog/horses.org +++ b/blog/horses.org @@ -1,6 +1,7 @@ #+title: Stop Asking for Better Horses -#+subtitle: By {{{author}}} #+author: Preston Pan +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: It doesn't happen instantly. #+html_head: #+html_head: diff --git a/blog/manifesto-1.org b/blog/manifesto-1.org index 06666e7..fd38022 100644 --- a/blog/manifesto-1.org +++ b/blog/manifesto-1.org @@ -1,6 +1,7 @@ #+title: The End of Equality and The Technocratic Imperative #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2025-01-01] +#+subtitle: By {{{author}}}, 2025 #+description: A system built on illusions will always decay. #+html_head: diff --git a/blog/monorepo.org b/blog/monorepo.org index a497cfa..756089a 100644 --- a/blog/monorepo.org +++ b/blog/monorepo.org @@ -1,5 +1,7 @@ #+title: My Monorepo #+author: Preston Pan +#+date: [2025-01-01] +#+subtitle: By {{{author}}}, 2025 #+description: NixOS configurations for infrastructure, workstations, and laptops #+html_head: #+html_head: diff --git a/blog/nixos.org b/blog/nixos.org index 0473a31..7576682 100644 --- a/blog/nixos.org +++ b/blog/nixos.org @@ -1,5 +1,7 @@ #+title: You should use NixOS #+author: Preston Pan +#+date: [2025-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: You can run a system from the 2040s, today. #+html_head: #+html_head: diff --git a/blog/private_keys.org b/blog/private_keys.org index 9d4b9f7..7382241 100644 --- a/blog/private_keys.org +++ b/blog/private_keys.org @@ -1,6 +1,7 @@ #+title: Passwords Are Obselete #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 #+description: Why haven't we switched to asymmetric cryptography? #+html_head: #+html_head: diff --git a/blog/stem.org b/blog/stem.org index ec9dde4..4d13f7d 100644 --- a/blog/stem.org +++ b/blog/stem.org @@ -1,6 +1,8 @@ #+title: Stem #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 + #+description: My own concatenative programming language #+html_head: #+language: en diff --git a/blog/tech-bros.org b/blog/tech-bros.org index 2b302fc..9bb233b 100644 --- a/blog/tech-bros.org +++ b/blog/tech-bros.org @@ -1,6 +1,8 @@ #+title: Tech Bros #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 + #+description: and other people that other people hate. #+html_head: #+html_head: diff --git a/blog/voting.org b/blog/voting.org index 6a0701d..c7f84bc 100644 --- a/blog/voting.org +++ b/blog/voting.org @@ -1,6 +1,8 @@ #+title: Representative Voting #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 + #+description: What do we do about voter turnout? Voting demographics? Polarization? #+html_head: #+html_head: diff --git a/blog/you_dont_matter.org b/blog/you_dont_matter.org index 5eaa9ca..3a91af5 100644 --- a/blog/you_dont_matter.org +++ b/blog/you_dont_matter.org @@ -1,6 +1,8 @@ #+title: You Don't Matter #+author: Preston Pan -#+subtitle: By {{{author}}} +#+date: [2024-01-01] +#+subtitle: By {{{author}}}, 2024 + #+description: Ideas aren't real, and morality is a spook. #+html_head: #+html_head: diff --git a/yasnippet/org-mode/blognew b/yasnippet/org-mode/blognew index da28363..1f37518 100644 --- a/yasnippet/org-mode/blognew +++ b/yasnippet/org-mode/blognew @@ -4,9 +4,9 @@ # -- #+title: $1 #+author: Preston Pan -#+subtitle: By {{{author}}} -#+description: $2 #+date: [`(format-time-string "%Y-%m-%d %a")`] +#+subtitle: By {{{author}}}, `(format-time-string "%B %d, %Y")` +#+description: $2 #+html_head: #+html_head: #+html_head: -- cgit v1.3