summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-03 18:32:08 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-03 18:32:08 -0800
commit9ddd0bb87f803d3b93c41c0ad4241fb423511581 (patch)
treec57d4d489fbde6098b450039b916fe9d23fa6a34
parent9cc6dde39662cc02c2061f659f7ec999af46b32d (diff)
remove garbage
-rw-r--r--.env4
-rw-r--r--GEMINI.md23
-rw-r--r--QWEN.md22
-rw-r--r--flake.nix12
-rw-r--r--models/qwen3/Modelfile3
-rw-r--r--names.org35
-rw-r--r--vencord-settings-backup.json603
7 files changed, 9 insertions, 693 deletions
diff --git a/.env b/.env
deleted file mode 100644
index 2b9e0a9..0000000
--- a/.env
+++ /dev/null
@@ -1,4 +0,0 @@
-OPENAI_API_KEY=nothing
-OPENAI_BASE_URL="http://localhost:11434/v1"
-OPENAI_MODEL=bjoernb/qwen3-coder-30b-1m:latest
-TAVILY_API_KEY=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
diff --git a/GEMINI.md b/GEMINI.md
deleted file mode 100644
index c6f3e17..0000000
--- a/GEMINI.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# GEMINI.md - Your AI Assistant's Guide to this Project
-
-This file provides context for the Gemini AI assistant to understand and effectively work with this project.
-
-## Directory Overview
-
-This project is a personal knowledge base, often referred to as a "digital garden" or "second brain." It is primarily composed of Org mode (`.org`) files, which are used for note-taking, project planning, and authoring content. The directory is structured to organize different types of information, from a personal blog and journal to a mind map of interconnected ideas.
-
-## Key Directories and Files
-
-* `./`: The root directory contains personal pages like `about.org`, `resume.org`, and an `index.org` file that likely serves as the main entry point.
-* `blog/`: This directory contains a series of articles written in Org mode, which are likely published as a personal blog.
-* `config/`: This directory holds configuration files for various tools, primarily centered around Emacs (`emacs.el`, `emacs.org`) and other development tools like `nix.org` and `qtile.org`.
-* `journal/`: This directory contains daily journal entries, with filenames corresponding to dates (e.g., `20240101.org`).
-* `mindmap/`: This is a collection of interconnected notes on various topics, forming a personal wiki or knowledge graph. The files are interlinked, creating a web of knowledge.
-* `style.css`: This file defines the visual style for the HTML exports of the Org mode files.
-
-## Usage and Conventions
-
-* **Format:** The primary format is Org mode. Content is written in plain text with Org mode syntax for structure and formatting.
-* **Editing:** The files are intended to be edited with a text editor that supports Org mode, with Emacs being the canonical choice.
-* **Exporting:** The Org mode files are likely exported to HTML for viewing in a web browser. The `#+html_head` directives in the files indicate that they are set up for this.
-* **Interlinking:** The notes, especially in the `mindmap/` directory, are heavily interlinked using Org mode's linking features (e.g., `[[id:...][...]]`). This is a key feature of the knowledge base.
diff --git a/QWEN.md b/QWEN.md
deleted file mode 100644
index b689482..0000000
--- a/QWEN.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Git Branch
-The main branch for this repo is `main`.
-# Project
-This project mainly deals with nix files and elisp. Otherwise it is emacs org mode.
-# Tool Calling
-If you fail a tool call, please retry but FIRST read the attempted tool call and then write the correct one that does the same thing.
-THE CORRECT TOOL CALL NAMES are:
-- Edit
-- ExitPlanMode
-- FindFiles
-- ReadFile
-- ReadFolder
-- ReadManyFiles
-- SaveMemory
-- SearchText
-- Shell
-- Task
-- TodoWrite
-- WebFetch
-- WebSearch
-- WriteFile
-THERE ARE NO OTHER TOOLS.
diff --git a/flake.nix b/flake.nix
index e28bfc9..ad5aef1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -66,7 +66,9 @@ mkdir -p public
mkdir -p .cache/texmf
export TEXMFVAR=$HOME/.cache/texmf
-ln -s "$(pwd)" $HOME/monorepo
+mkdir -p $HOME/monorepo
+cp -a . $HOME/monorepo/
+cd $HOME/monorepo
cat <<EOF > $TMPDIR/policy.xml
<policymap>
@@ -95,6 +97,7 @@ emacs -q --batch \
--eval '(provide (quote lean4-mode))' \
--eval '(provide (quote irony-mode))' \
--eval '(provide (quote irony))' \
+ --eval '(defalias (quote irony-cdb-autosetup-compile-options) (quote ignore))' \
--eval "(setq org-latex-pdf-process (quote (\"xelatex -shell-escape -interaction nonstopmode %f\")))" \
--eval '(setq org-startup-with-latex-preview nil)' \
--eval '(setq org-startup-indented nil)' \
@@ -102,13 +105,15 @@ emacs -q --batch \
--eval '(setq org-confirm-babel-evaluate nil)' \
-l ${hyprnixmacs}/init.el \
--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 '(org-publish-all t)' || (echo "EMACS BUILD FAILED. DUMPING LATEX LOGS:" && cat /build/*.log && exit 1)
+ --eval '(org-publish-all t)' || (echo "FAIL:" && cat /build/*.log && exit 1)
'';
installPhase = ''
mkdir -p $out
-cp -r public/* $out/
+cp -r $HOME/website_html/. $out/
'';
};
in
@@ -129,6 +134,7 @@ cp -r public/* $out/
inherit (pre-commit-check) shellHook;
buildInputs = [
deadnix
+ lychee
];
};
};
diff --git a/models/qwen3/Modelfile b/models/qwen3/Modelfile
deleted file mode 100644
index 96d6912..0000000
--- a/models/qwen3/Modelfile
+++ /dev/null
@@ -1,3 +0,0 @@
-FROM qwen3-coder:30b
-PARAMETER temperature 0.5
-PARAMETER num_ctx 8192
diff --git a/names.org b/names.org
deleted file mode 100644
index 209f500..0000000
--- a/names.org
+++ /dev/null
@@ -1,35 +0,0 @@
-#+title: Sol: A Life OS
-#+author: Preston Pan
-#+description: A technology enhnaced sovereign life operating system for the modern age
-#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" />
-#+html_head: <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
-#+html_head: <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
-#+html_head: <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
-#+html_head: <link rel="manifest" href="/site.webmanifest">
-#+html_head: <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
-#+html_head: <meta name="msapplication-TileColor" content="#da532c">
-#+html_head: <meta name="theme-color" content="#ffffff">
-#+html_head: <meta name="viewport" content="width=1000;" />
-#+language: en
-#+OPTIONS: broken-links:t
-
-* Introduction
-Sol is the name of my life operating system. It is the aggregation of all notable tools that I use
-in order to impose both structure and meaning on the world. The completed version may feature a
-sailboat along with the tools below. Note that a ton of other stuff is contained within the system,
-but they have no names as of yet. With that being said, here are the names:
-
-* Names
-- Affinity: My desktop configuration
-- Continuity: My laptop configuration
-- Spontaneity: My VPS server configuration
-- Agility: My nix-on-droid flake
-- Curiosity: My robot vacuum
-- Ingenuity: My (future) 3d printer
-- Vitality: My Aquaponics setup, and the name of the Raspberry Pi Zero2 that powers the system.
-- Asimov: My homemade ebike
-- Olive: My folding knife
-- Blueprint: Bryan Johnson's protocol that I am trying to integrate more of
-Note that Asimov will have an amateur radio antenna on it, and perhaps I will also carry a couple of
-solar panels, and a tent and other things needed for shelter whenever I need to go bikepacking with
-an ebike.
diff --git a/vencord-settings-backup.json b/vencord-settings-backup.json
deleted file mode 100644
index 5c80302..0000000
--- a/vencord-settings-backup.json
+++ /dev/null
@@ -1,603 +0,0 @@
-{
- "settings": {
- "autoUpdate": false,
- "autoUpdateNotification": false,
- "useQuickCss": true,
- "themeLinks": [],
- "enabledThemes": [],
- "enableReactDevtools": true,
- "frameless": false,
- "transparent": true,
- "winCtrlQ": false,
- "disableMinSize": false,
- "winNativeTitleBar": false,
- "plugins": {
- "ChatInputButtonAPI": {
- "enabled": false
- },
- "CommandsAPI": {
- "enabled": true
- },
- "DynamicImageModalAPI": {
- "enabled": false
- },
- "MemberListDecoratorsAPI": {
- "enabled": false
- },
- "MessageAccessoriesAPI": {
- "enabled": true
- },
- "MessageDecorationsAPI": {
- "enabled": false
- },
- "MessageEventsAPI": {
- "enabled": true
- },
- "MessagePopoverAPI": {
- "enabled": false
- },
- "MessageUpdaterAPI": {
- "enabled": false
- },
- "ServerListAPI": {
- "enabled": false
- },
- "UserSettingsAPI": {
- "enabled": true
- },
- "AccountPanelServerProfile": {
- "enabled": false
- },
- "AlwaysAnimate": {
- "enabled": false
- },
- "AlwaysExpandRoles": {
- "enabled": false
- },
- "AlwaysTrust": {
- "enabled": false
- },
- "AnonymiseFileNames": {
- "enabled": false
- },
- "AppleMusicRichPresence": {
- "enabled": false
- },
- "WebRichPresence (arRPC)": {
- "enabled": false
- },
- "BANger": {
- "enabled": false
- },
- "BetterFolders": {
- "enabled": false
- },
- "BetterGifAltText": {
- "enabled": false
- },
- "BetterGifPicker": {
- "enabled": false
- },
- "BetterNotesBox": {
- "enabled": false
- },
- "BetterRoleContext": {
- "enabled": false
- },
- "BetterRoleDot": {
- "enabled": false
- },
- "BetterSessions": {
- "enabled": false
- },
- "BetterSettings": {
- "enabled": true,
- "disableFade": true,
- "eagerLoad": true
- },
- "BetterUploadButton": {
- "enabled": false
- },
- "BiggerStreamPreview": {
- "enabled": false
- },
- "BlurNSFW": {
- "enabled": false
- },
- "CallTimer": {
- "enabled": false
- },
- "ClearURLs": {
- "enabled": false
- },
- "ClientTheme": {
- "enabled": false
- },
- "ColorSighted": {
- "enabled": false
- },
- "ConsoleJanitor": {
- "enabled": false
- },
- "ConsoleShortcuts": {
- "enabled": false
- },
- "CopyEmojiMarkdown": {
- "enabled": false
- },
- "CopyFileContents": {
- "enabled": false
- },
- "CopyUserURLs": {
- "enabled": false
- },
- "CrashHandler": {
- "enabled": true
- },
- "CtrlEnterSend": {
- "enabled": false
- },
- "CustomRPC": {
- "enabled": false
- },
- "CustomIdle": {
- "enabled": false
- },
- "Dearrow": {
- "enabled": true,
- "hideButton": false,
- "replaceElements": 0,
- "dearrowByDefault": true
- },
- "Decor": {
- "enabled": false
- },
- "DisableCallIdle": {
- "enabled": false
- },
- "DontRoundMyTimestamps": {
- "enabled": false
- },
- "Experiments": {
- "enabled": false
- },
- "F8Break": {
- "enabled": false
- },
- "FakeNitro": {
- "enabled": true,
- "enableStickerBypass": true,
- "enableStreamQualityBypass": true,
- "enableEmojiBypass": true,
- "transformEmojis": true,
- "transformStickers": true,
- "transformCompoundSentence": false
- },
- "FakeProfileThemes": {
- "enabled": true,
- "nitroFirst": true
- },
- "FavoriteEmojiFirst": {
- "enabled": false
- },
- "FavoriteGifSearch": {
- "enabled": false
- },
- "FixCodeblockGap": {
- "enabled": false
- },
- "FixImagesQuality": {
- "enabled": false
- },
- "FixSpotifyEmbeds": {
- "enabled": false
- },
- "FixYoutubeEmbeds": {
- "enabled": false
- },
- "ForceOwnerCrown": {
- "enabled": false
- },
- "FriendInvites": {
- "enabled": false
- },
- "FriendsSince": {
- "enabled": false
- },
- "FullSearchContext": {
- "enabled": false
- },
- "FullUserInChatbox": {
- "enabled": false
- },
- "GameActivityToggle": {
- "enabled": false
- },
- "GifPaste": {
- "enabled": false
- },
- "GreetStickerPicker": {
- "enabled": false
- },
- "iLoveSpam": {
- "enabled": false
- },
- "IgnoreActivities": {
- "enabled": false
- },
- "ImageLink": {
- "enabled": false
- },
- "ImageZoom": {
- "enabled": false
- },
- "ImplicitRelationships": {
- "enabled": false
- },
- "InvisibleChat": {
- "enabled": false
- },
- "IrcColors": {
- "enabled": false
- },
- "KeepCurrentChannel": {
- "enabled": false
- },
- "LastFMRichPresence": {
- "enabled": false
- },
- "LoadingQuotes": {
- "enabled": false
- },
- "MemberCount": {
- "enabled": false
- },
- "MentionAvatars": {
- "enabled": false
- },
- "MessageClickActions": {
- "enabled": false
- },
- "MessageLatency": {
- "enabled": false
- },
- "MessageLinkEmbeds": {
- "enabled": false
- },
- "MessageLogger": {
- "enabled": false
- },
- "MessageTags": {
- "enabled": false
- },
- "MoreCommands": {
- "enabled": false
- },
- "MoreKaomoji": {
- "enabled": false
- },
- "Moyai": {
- "enabled": false
- },
- "MutualGroupDMs": {
- "enabled": false
- },
- "NewGuildSettings": {
- "enabled": false
- },
- "NoBlockedMessages": {
- "enabled": false
- },
- "NoDevtoolsWarning": {
- "enabled": false
- },
- "NoF1": {
- "enabled": false
- },
- "NoMaskedUrlPaste": {
- "enabled": false
- },
- "NoMosaic": {
- "enabled": false
- },
- "NoOnboardingDelay": {
- "enabled": false
- },
- "NoPendingCount": {
- "enabled": false
- },
- "NoProfileThemes": {
- "enabled": false
- },
- "NoReplyMention": {
- "enabled": false
- },
- "NoScreensharePreview": {
- "enabled": false
- },
- "NoServerEmojis": {
- "enabled": false
- },
- "NoTypingAnimation": {
- "enabled": false
- },
- "NoUnblockToJump": {
- "enabled": false
- },
- "NormalizeMessageLinks": {
- "enabled": false
- },
- "NotificationVolume": {
- "enabled": false
- },
- "NSFWGateBypass": {
- "enabled": false
- },
- "OnePingPerDM": {
- "enabled": false
- },
- "oneko": {
- "enabled": false
- },
- "OpenInApp": {
- "enabled": false
- },
- "OverrideForumDefaults": {
- "enabled": false
- },
- "PartyMode": {
- "enabled": false
- },
- "PauseInvitesForever": {
- "enabled": false
- },
- "PermissionFreeWill": {
- "enabled": false
- },
- "PermissionsViewer": {
- "enabled": false
- },
- "petpet": {
- "enabled": false
- },
- "PictureInPicture": {
- "enabled": false
- },
- "PinDMs": {
- "enabled": false
- },
- "PlainFolderIcon": {
- "enabled": false
- },
- "PlatformIndicators": {
- "enabled": false
- },
- "PreviewMessage": {
- "enabled": false
- },
- "QuickMention": {
- "enabled": false
- },
- "QuickReply": {
- "enabled": false
- },
- "ReactErrorDecoder": {
- "enabled": false
- },
- "ReadAllNotificationsButton": {
- "enabled": false
- },
- "RelationshipNotifier": {
- "enabled": false
- },
- "ReplaceGoogleSearch": {
- "enabled": false
- },
- "ReplyTimestamp": {
- "enabled": false
- },
- "RevealAllSpoilers": {
- "enabled": false
- },
- "ReverseImageSearch": {
- "enabled": false
- },
- "ReviewDB": {
- "enabled": false
- },
- "RoleColorEverywhere": {
- "enabled": false
- },
- "SecretRingToneEnabler": {
- "enabled": false
- },
- "Summaries": {
- "enabled": false
- },
- "SendTimestamps": {
- "enabled": false
- },
- "ServerInfo": {
- "enabled": false
- },
- "ServerListIndicators": {
- "enabled": false
- },
- "ShikiCodeblocks": {
- "enabled": false
- },
- "ShowAllMessageButtons": {
- "enabled": false
- },
- "ShowConnections": {
- "enabled": false
- },
- "ShowHiddenChannels": {
- "enabled": false
- },
- "ShowHiddenThings": {
- "enabled": false
- },
- "ShowMeYourName": {
- "enabled": false
- },
- "ShowTimeoutDuration": {
- "enabled": false
- },
- "SilentMessageToggle": {
- "enabled": false
- },
- "SilentTyping": {
- "enabled": false
- },
- "SortFriendRequests": {
- "enabled": false
- },
- "SpotifyControls": {
- "enabled": false
- },
- "SpotifyCrack": {
- "enabled": false
- },
- "SpotifyShareCommands": {
- "enabled": false
- },
- "StartupTimings": {
- "enabled": false
- },
- "StickerPaste": {
- "enabled": false
- },
- "StreamerModeOnStream": {
- "enabled": false
- },
- "SuperReactionTweaks": {
- "enabled": false
- },
- "TextReplace": {
- "enabled": false
- },
- "ThemeAttributes": {
- "enabled": false
- },
- "Translate": {
- "enabled": false
- },
- "TypingIndicator": {
- "enabled": false
- },
- "TypingTweaks": {
- "enabled": false
- },
- "Unindent": {
- "enabled": false
- },
- "UnlockedAvatarZoom": {
- "enabled": false
- },
- "UnsuppressEmbeds": {
- "enabled": false
- },
- "UserMessagesPronouns": {
- "enabled": false
- },
- "UserVoiceShow": {
- "enabled": false
- },
- "USRBG": {
- "enabled": false
- },
- "ValidReply": {
- "enabled": false
- },
- "ValidUser": {
- "enabled": false
- },
- "VoiceChatDoubleClick": {
- "enabled": false
- },
- "VcNarrator": {
- "enabled": false
- },
- "VencordToolbox": {
- "enabled": false
- },
- "ViewIcons": {
- "enabled": false
- },
- "ViewRaw": {
- "enabled": false
- },
- "VoiceDownload": {
- "enabled": false
- },
- "VoiceMessages": {
- "enabled": false
- },
- "VolumeBooster": {
- "enabled": false
- },
- "WebKeybinds": {
- "enabled": true
- },
- "WebScreenShareFixes": {
- "enabled": true
- },
- "WhoReacted": {
- "enabled": false
- },
- "XSOverlay": {
- "enabled": false
- },
- "YoutubeAdblock": {
- "enabled": false
- },
- "BadgeAPI": {
- "enabled": true
- },
- "HideMedia": {
- "enabled": false
- },
- "ExpressionCloner": {
- "enabled": false
- },
- "CopyStickerLinks": {
- "enabled": false
- },
- "ImageFilename": {
- "enabled": false
- },
- "NoTrack": {
- "enabled": true,
- "disableAnalytics": true
- },
- "Settings": {
- "enabled": true,
- "settingsLocation": "aboveNitro"
- },
- "DisableDeepLinks": {
- "enabled": true
- },
- "SupportHelper": {
- "enabled": true
- },
- "WebContextMenus": {
- "enabled": true
- }
- },
- "notifications": {
- "timeout": 5000,
- "position": "bottom-right",
- "useNative": "not-focused",
- "logLimit": 50
- },
- "cloud": {
- "authenticated": false,
- "url": "https://api.vencord.dev/",
- "settingsSync": false,
- "settingsSyncVersion": 1759428599622
- },
- "eagerPatches": false
- },
- "quickCss": "/**\n * @name midnight (catppuccin mocha)\n * @description a dark, customizable discord theme. based on catppuccin mocha theme (https://catppuccin.com).\n * @author refact0r\n * @version 2.1.1\n * @invite nz87hXyvcy\n * @website https://github.com/refact0r/midnight-discord\n * @source https://github.com/refact0r/midnight-discord/blob/master/themes/flavors/midnight-catppuccin-mocha.theme.css\n * @authorId 508863359777505290\n * @authorLink https://www.refact0r.dev\n*/\n\n/* import theme modules */\n@import url('https://refact0r.github.io/midnight-discord/build/midnight.css');\n\nbody {\n /* font, change to '' for default discord font */\n --font: 'figtree'; /* change to '' for default discord font */\n --code-font: ''; /* change to '' for default discord font */\n font-weight: 400 /* normal text font weight. DOES NOT AFFECT BOLD TEXT */;\n\n /* sizes */\n --gap: 12px; /* spacing between panels */\n --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */\n --border-thickness: 1px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */\n\n /* animation/transition options */\n --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */\n --list-item-transition: 0.2s ease; /* transition for list items */\n --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */\n --border-hover-transition: 0.2s ease; /* transition for borders when hovered */\n\n /* top bar options */\n --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */\n --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */\n --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */\n --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */\n\n /* window controls */\n --custom-window-controls: on; /* off: default window controls, on: custom window controls */\n --window-control-size: 14px; /* size of custom window controls */\n\n /* dms button options */\n --custom-dms-icon: hide; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */\n --dms-icon-svg-url: url('https://refact0r.github.io/midnight-discord/assets/Font_Awesome_5_solid_moon.svg'); /* icon svg url. MUST BE A SVG. */\n --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */\n --dms-icon-color-before: var(--icon-secondary); /* normal icon color */\n --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */\n --custom-dms-background: image; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */\n --dms-background-image-url: url('https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png'); /* url of the background image */\n --dms-background-image-size: cover; /* size of the background image (css background-size property) */\n --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */\n\n /* background image options */\n --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */\n --background-image-url: url(''); /* url of the background image */\n\n /* transparency/blur options */\n /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */\n --transparency-tweaks: on; /* off: no changes, on: remove some elements for better transparency */\n --remove-bg-layer: on; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */\n --panel-blur: on; /* off: no changes, on: blur the background of panels */\n --blur-amount: 12px; /* amount of blur */\n --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */\n\n /* chatbar options */\n --custom-chatbar: aligned; /* off: default chatbar, aligned: chatbar aligned with the user panel, separated: chatbar separated from chat */\n --chatbar-height: 47px; /* height of the chatbar (52px by default, 47px recommended for aligned, 56px recommended for separated) */\n --chatbar-padding: 8px; /* padding of the chatbar. only applies in aligned mode. */\n\n /* other options */\n --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */\n}\n\n/* color options */\n:root {\n --colors: on; /* off: discord default colors, on: midnight custom colors */\n\n /* text colors */\n --text-0: var(--bg-3); /* text on colored elements */\n --text-1: hsl(226, 64%, 95%); /* other normally white text */\n --text-2: #cdd6f4; /* headings and important text */\n --text-3: #bac2de; /* normal text */\n --text-4: #7f849c; /* icon buttons and channels */\n --text-5: #585b70; /* muted channels/chats and timestamps */\n\n /* background and dark colors */\n --bg-1: #45475a; /* dark buttons when clicked */\n --bg-2: #313244; /* dark buttons */\n --bg-3: #181825; /* spacing, secondary elements */\n --bg-4: #1e1e2e; /* main background color */\n --hover: hsla(235, 15%, 53%, 0.1); /* channels and buttons when hovered */\n --active: hsla(235, 15%, 53%, 0.2); /* channels and buttons when clicked or selected */\n --active-2: hsla(235, 15%, 53%, 0.3); /* extra state for transparent buttons */\n --message-hover: hsla(235, 0%, 0%, 0.1); /* messages when hovered */\n\n /* accent colors */\n --accent-1: var(--purple-1); /* links and other accent text */\n --accent-2: var(--purple-2); /* small accent elements */\n --accent-3: var(--purple-3); /* accent buttons */\n --accent-4: var(--purple-4); /* accent buttons when hovered */\n --accent-5: var(--purple-5); /* accent buttons when clicked */\n --accent-new: var(--accent-2); /* stuff that's normally red like mute/deafen buttons */\n --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */\n --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */\n --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */\n --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */\n\n /* status indicator colors */\n --online: var(--green-2); /* change to #43a25a for default */\n --dnd: var(--red-2); /* change to #d83a42 for default */\n --idle: var(--yellow-2); /* change to #ca9654 for default */\n --streaming: var(--purple-2); /* change to #593695 for default */\n --offline: var(--text-4); /* change to #83838b for default offline color */\n\n /* border colors */\n --border-light: var(--hover); /* general light border color */\n --border: var(--active); /* general normal border color */\n --border-hover: var(--active); /* border color of panels when hovered */\n --button-border: hsl(235, 0%, 100%, 0.1); /* neutral border color of buttons */\n\n /* base colors */\n --red-1: hsl(343deg, 81%, 80%);\n --red-2: hsl(343deg, 81%, 75%);\n --red-3: hsl(343deg, 81%, 75%);\n --red-4: hsl(343deg, 81%, 70%);\n --red-5: hsl(343deg, 81%, 65%);\n\n --green-1: hsl(115deg, 54%, 81%);\n --green-2: hsl(115deg, 54%, 76%);\n --green-3: hsl(115deg, 54%, 76%);\n --green-4: hsl(115deg, 54%, 71%);\n --green-5: hsl(115deg, 54%, 66%);\n\n --blue-1: hsl(199deg, 76%, 74%);\n --blue-2: hsl(199deg, 76%, 69%);\n --blue-3: hsl(199deg, 76%, 69%);\n --blue-4: hsl(199deg, 76%, 64%);\n --blue-5: hsl(199deg, 76%, 59%);\n\n --yellow-1: hsl(41deg, 86%, 88%);\n --yellow-2: hsl(41deg, 86%, 83%);\n --yellow-3: hsl(41deg, 86%, 83%);\n --yellow-4: hsl(41deg, 86%, 78%);\n --yellow-5: hsl(41deg, 86%, 73%);\n\n --purple-1: hsl(267deg, 84%, 86%);\n --purple-2: hsl(267deg, 84%, 81%);\n --purple-3: hsl(267deg, 84%, 81%);\n --purple-4: hsl(267deg, 84%, 76%);\n --purple-5: hsl(267deg, 84%, 71%);\n}"
-} \ No newline at end of file