@import "tailwindcss"; @plugin "@tailwindcss/typography"; :root { /* Comments indicate what they are used for in vim/term /* Base Colors (Background/Text) */ --color-base: #fbf1c7; /* Main background color (lightest) */ --color-mantle: #f3eac1; /* Secondary background (slightly darker) */ --color-crust: #e7deb7; /* Lowest background layer (darkest) */ /* Text Colors */ --color-text: #654735; /* Primary text color */ --color-subtext1: #7b5d44; /* Secondary text (comments, less important) */ --color-subtext0: #8f6f56; /* Tertiary text (even less important) */ /* Surface Colors */ --color-surface0: #dfd6b1; /* Surface layer 0 (medium background) */ --color-surface1: #c9c19f; /* Surface layer 1 (darker surface) */ --color-surface2: #a79c86; /* Surface layer 2 (darkest surface) */ /* Overlay Colors */ --color-overlay0: #c9aa8c; /* Overlay layer 0 */ --color-overlay1: #b6977a; /* Overlay layer 1 */ --color-overlay2: #a28368; /* Overlay layer 2 */ /* Accent Colors (Syntax/Highlighting) */ --color-red: #c14a4a; /* Error messages, important keywords */ --color-maroon: #c14a4a; /* Error messages, critical elements */ --color-peach: #c35e0a; /* Warning messages, operators */ --color-yellow: #a96b2c; /* Variables, parameters, attributes */ --color-green: #6c782e; /* Strings, literals, constants */ --color-teal: #4c7a5d; /* Functions, methods, built-ins */ --color-sky: #4c7a5d; /* Functions, methods (alternative) */ --color-sapphire: #4c7a5d; /* Functions, methods (alternative) */ --color-blue: #45707a; /* Keywords, types, classes */ --color-lavender: #45707a; /* Comments, documentation strings */ --color-pink: #945e80; /* Special syntax elements, identifiers */ --color-mauve: #945e80; /* Special syntax elements (alternative) */ --color-flamingo: #c14a4a; /* Error messages, critical elements */ --color-rosewater: #c14a4a; /* Error messages, critical elements */ } @theme { --color-rosewater: #c14a4a; --color-flamingo: #c14a4a; --color-pink: #945e80; --color-mauve: #945e80; --color-red: #c14a4a; --color-maroon: #c14a4a; --color-peach: #c35e0a; --color-yellow: #a96b2c; --color-green: #6c782e; --color-teal: #4c7a5d; --color-sky: #4c7a5d; --color-sapphire: #4c7a5d; --color-blue: #45707a; --color-lavender: #45707a; --color-text: #654735; --color-subtext1: #7b5d44; --color-subtext0: #8f6f56; --color-overlay2: #a28368; --color-overlay1: #b6977a; --color-overlay0: #c9aa8c; --color-surface2: #a79c86; --color-surface1: #c9c19f; --color-surface0: #dfd6b1; --color-base: #fbf1c7; --color-mantle: #f3eac1; --color-crust: #e7deb7; } @media (prefers-color-scheme: dark) { :root { --color-rosewater: #efc9c2; --color-flamingo: #ebb2b2; --color-pink: #f2a7de; --color-mauve: #b889f4; --color-red: #ea7183; --color-maroon: #ea838c; --color-peach: #f39967; --color-yellow: #eaca89; --color-green: #96d382; --color-teal: #78cec1; --color-sky: #91d7e3; --color-sapphire: #68bae0; --color-blue: #739df2; --color-lavender: #a0a8f6; --color-text: #b5c1f1; --color-subtext1: #a6b0d8; --color-subtext0: #959ec2; --color-overlay2: #848cad; --color-overlay1: #717997; --color-overlay0: #63677f; --color-surface2: #505469; --color-surface1: #3e4255; --color-surface0: #2c2f40; --color-base: #1e1e2e; --color-mantle: #141620; --color-crust: #0e0f16; } @theme { --color-rosewater: #efc9c2; --color-flamingo: #ebb2b2; --color-pink: #f2a7de; --color-mauve: #b889f4; --color-red: #ea7183; --color-maroon: #ea838c; --color-peach: #f39967; --color-yellow: #eaca89; --color-green: #96d382; --color-teal: #78cec1; --color-sky: #91d7e3; --color-sapphire: #68bae0; --color-blue: #739df2; --color-lavender: #a0a8f6; --color-text: #b5c1f1; --color-subtext1: #a6b0d8; --color-subtext0: #959ec2; --color-overlay2: #848cad; --color-overlay1: #717997; --color-overlay0: #63677f; --color-surface2: #505469; --color-surface1: #3e4255; --color-surface0: #2c2f40; --color-base: #1e1e2e; --color-mantle: #141620; --color-crust: #0e0f16; } } /* Manual theme override via classes (higher specificity than media query) */ :root.light { --color-rosewater: #c14a4a; --color-flamingo: #c14a4a; --color-pink: #945e80; --color-mauve: #945e80; --color-red: #c14a4a; --color-maroon: #c14a4a; --color-peach: #c35e0a; --color-yellow: #a96b2c; --color-green: #6c782e; --color-teal: #4c7a5d; --color-sky: #4c7a5d; --color-sapphire: #4c7a5d; --color-blue: #45707a; --color-lavender: #45707a; --color-text: #654735; --color-subtext1: #7b5d44; --color-subtext0: #8f6f56; --color-overlay2: #a28368; --color-overlay1: #b6977a; --color-overlay0: #c9aa8c; --color-surface2: #a79c86; --color-surface1: #c9c19f; --color-surface0: #dfd6b1; --color-base: #fbf1c7; --color-mantle: #f3eac1; --color-crust: #e7deb7; } :root.dark { --color-rosewater: #efc9c2; --color-flamingo: #ebb2b2; --color-pink: #f2a7de; --color-mauve: #b889f4; --color-red: #ea7183; --color-maroon: #ea838c; --color-peach: #f39967; --color-yellow: #eaca89; --color-green: #96d382; --color-teal: #78cec1; --color-sky: #91d7e3; --color-sapphire: #68bae0; --color-blue: #739df2; --color-lavender: #a0a8f6; --color-text: #b5c1f1; --color-subtext1: #a6b0d8; --color-subtext0: #959ec2; --color-overlay2: #848cad; --color-overlay1: #717997; --color-overlay0: #63677f; --color-surface2: #505469; --color-surface1: #3e4255; --color-surface0: #2c2f40; --color-base: #1e1e2e; --color-mantle: #141620; --color-crust: #0e0f16; } :root { font-family: "Source Code Pro", monospace; transition-property: all; transition-timing-function: var( --tw-ease, var(--default-transition-timing-function) /* cubic-bezier(0.4, 0, 0.2, 1) */ ); transition-duration: var( --tw-duration, var(--default-transition-duration) /* 150ms */ ); transition-duration: 500ms; syntax: "*"; inherits: false; } ::selection { background-color: var(--color-text); color: var(--color-crust); } ::-moz-selection { background-color: var(--color-text); color: var(--color-crust); } ::-webkit-selection { background-color: var(--color-text); color: var(--color-crust); } body { background: var(--color-base); color: var(--color-text); } .cursor-typing { display: inline-block; width: 2px; background-color: var(--color-text); vertical-align: text-bottom; margin-left: 2px; position: absolute; } /* Block cursor when done typing */ .cursor-block { display: inline-block; width: 1ch; background-color: var(--color-text); vertical-align: text-bottom; animation: blink 1s infinite; margin-left: 2px; position: absolute; } @keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } } .input-group, .textarea-group { position: relative; margin-top: 45px; } input.underlinedInput, textarea.underlinedInput { font-size: 18px; padding: 10px 10px 10px 5px; display: block; border: none; } input.underlinedInput, textarea.underlinedInput { border-bottom: 1px solid var(--color-surface2); } textarea.underlinedInput { resize: none; } input.underlinedInput:focus, textarea.underlinedInput:focus { outline: none; } .bar { position: relative; display: block; } .bar:before, .bar:after { content: ""; height: 2px; width: 0; bottom: 0px; position: absolute; transition: width 0.3s ease-out; background: var(--color-blue); } .bar:before { left: 50%; } .bar:after { right: 50%; } input.underlinedInput:focus ~ .bar:before, input.underlinedInput:focus ~ .bar:after, textarea.underlinedInput:focus ~ .bar:before, textarea.underlinedInput:focus ~ .bar:after { width: 50%; } input.underlinedInput:focus ~ label, input.underlinedInput:not(:placeholder-shown) ~ label, textarea.underlinedInput:focus ~ label, textarea.underlinedInput:not(:placeholder-shown) ~ label { top: -20px; font-size: 14px; color: var(--color-blue); } .delete input.underlinedInput:focus ~ label, .delete input.underlinedInput:not(:placeholder-shown) ~ label, .delete textarea.underlinedInput:focus ~ label, .delete textarea.underlinedInput:not(:placeholder-shown) ~ label { color: var(--color-red); } label.underlinedInputLabel { font-size: 18px; font-weight: normal; position: absolute; pointer-events: none; left: 5px; top: 10px; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } label.underlinedInputLabel { color: var(--color-surface1); } .logoSpinner:hover { animation: spinner 1.5s ease; } @keyframes spinner { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } } @keyframes spinReverse { to { transform: rotate(-360deg); } } .animate-spin-reverse { animation: spinReverse 1s linear infinite; } .vertical-rule-around { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; } .vertical-rule-around:before, .vertical-rule-around:after { content: ""; flex: 1; border-left: 1px solid var(--color-surface2); margin: 10px 0; } .checkbox-container { position: relative; padding-left: 35px; cursor: pointer; font-size: 22px; user-select: none; } .checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background-color: #eee; border-radius: 4px; transition: background-color 0.2s ease; } .checkbox-container:hover input ~ .checkmark { background-color: #ccc; } .checkbox-container input:checked ~ .checkmark { background-color: #2196f3; } input[type="checkbox"] { -webkit-appearance: none; appearance: none; background-color: var(--form-background); margin: 0; font: inherit; width: 1.15em; height: 1.15em; border: 2px solid var(--color-blue); border-radius: 0.15em; transform: translateY(-0.075em); display: grid; place-content: center; } input[type="checkbox"]::before { content: ""; width: 0.65em; height: 0.65em; clip-path: circle(25%); transform: scale(0); color: var(--color-blue); transform-origin: center; transition: 120ms transform ease-in-out; /* Windows High Contrast Mode */ background-color: CanvasText; } @media (prefers-color-scheme: light) { input[type="checkbox"]::before { box-shadow: inset 1em 1em black; } } @media (prefers-color-scheme: dark) { input[type="checkbox"]::before { box-shadow: inset 1em 1em white; } } input[type="checkbox"]:checked::before { transform: scale(1); } .shaker:hover { animation: shaker 0.5s ease; } .tooltip { position: relative; } .tooltip .tooltip-text { visibility: hidden; min-width: fit-content; background-color: var(--color-mantle); color: var(--color-text); text-align: center; padding: 5px 0; border-radius: 6px; position: absolute; z-index: 1; top: 100%; left: 50%; opacity: 0; transition: opacity 0.3s; } .tooltip:hover .tooltip-text { visibility: visible; opacity: 1; } .rule-around { display: flex; align-items: center; } .rule-around:before, .rule-around:after { content: ""; flex: 1; border-top: 1px solid var(--color-text); margin: 0 10px; } .hover-underline-animation { display: inline-block; position: relative; } .hover-underline-animation::after { content: ""; position: absolute; width: 100%; transform: scaleX(0); height: 1px; bottom: 0; left: 0; transform-origin: bottom right; transition: transform 0.35s ease-out; } .hover-underline-animation:hover::after { transform: scaleX(1); transform-origin: bottom left; background-color: var(--color-surface2); } a.hover-underline-animation:hover::after { background-color: var(--color-blue) !important; } .image-overlay::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(255, 255, 255, 0.1); } .iframe-wrapper { position: relative; min-height: 300px; width: 100%; min-width: 350px; max-width: 100% !important; background-color: black; } .iframe-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Hamburger menu button - only show on non-touch devices under mobile breakpoint */ @media (max-width: 767px) { .hamburger-menu-btn { display: block !important; } } @keyframes shaker { 0% { transform: rotate(0deg); } 33% { transform: rotate(15deg); } 66% { transform: rotate(-15deg); } 100% { transform: rotate(0deg); } } .shaker:hover { animation: shaker 0.5s ease; } .prose { --tw-prose-body: var(--color-text); --tw-prose-headings: var(--color-text); --tw-prose-lead: var(--color-text); --tw-prose-links: var(--color-blue); --tw-prose-bold: var(--color-text); --tw-prose-counters: var(--color-subtext1); --tw-prose-bullets: var(--color-subtext1); --tw-prose-hr: var(--color-surface2); --tw-prose-quotes: var(--color-text); --tw-prose-quote-borders: var(--color-surface2); --tw-prose-captions: var(--color-subtext1); --tw-prose-code: var(--color-text); --tw-prose-pre-code: var(--color-text); --tw-prose-pre-bg: var(--color-surface0); --tw-prose-th-borders: var(--color-surface2); --tw-prose-td-borders: var(--color-surface1); } .prose-invert { --tw-prose-body: var(--color-text); --tw-prose-headings: var(--color-text); --tw-prose-lead: var(--color-text); --tw-prose-links: var(--color-blue); --tw-prose-bold: var(--color-text); --tw-prose-counters: var(--color-subtext1); --tw-prose-bullets: var(--color-subtext1); --tw-prose-hr: var(--color-surface2); --tw-prose-quotes: var(--color-text); --tw-prose-quote-borders: var(--color-surface2); --tw-prose-captions: var(--color-subtext1); --tw-prose-code: var(--color-text); --tw-prose-pre-code: var(--color-text); --tw-prose-pre-bg: var(--color-surface0); --tw-prose-th-borders: var(--color-surface2); --tw-prose-td-borders: var(--color-surface1); } .code-block { position: relative; select { position: absolute; right: 0.5rem; top: 0.5rem; } } .ProseMirror { > * + * { margin-top: 0.75em; } ul, ol { padding: 0 1rem; } h1, h2, h3, h4, h5, h6 { line-height: 1.1; } a { color: #70cff8; } img { max-width: 100%; height: auto; } blockquote { padding-left: 1rem; border-left: 2px solid rgba(#0d0d0d, 0.1); } hr { border: none; border-top: 2px solid rgba(#0d0d0d, 0.1); margin: 2rem 0; } pre { background: #0d0d0d; color: #fff; font-family: "JetBrainsMono", monospace; padding: 0.75rem 1rem; border-radius: 0.5rem; code { color: inherit; padding: 0; background: none; font-size: 0.8rem; } .hljs-comment, .hljs-quote { color: #616161; } .hljs-variable, .hljs-template-variable, .hljs-attribute, .hljs-tag, .hljs-name, .hljs-regexp, .hljs-link, .hljs-name, .hljs-selector-id, .hljs-selector-class { color: #f98181; } .hljs-number, .hljs-meta, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params { color: #fbbc88; } .hljs-string, .hljs-symbol, .hljs-bullet { color: #b9f18d; } .hljs-title, .hljs-section { color: #faf594; } .hljs-keyword, .hljs-selector-tag { color: #70cff8; } .hljs-emphasis { font-style: italic; } .hljs-strong { font-weight: 700; } } }