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