├── .env.example
├── .gitattributes
├── .gitignore
├── .github
├── assets
│ ├── showcase_1.webp
│ ├── showcase_2.webp
│ ├── showcase_3.webp
│ └── showcase_4.webp
└── workflows
│ └── build.yml
├── scripts
├── utils.js
├── build.js
├── benchmark.js
├── dev.js
├── launchDiscord.js
└── remoteBenchmark.js
├── dracula.theme.css
├── .run
├── bench.run.xml
├── watch.run.xml
├── lint --fix.run.xml
└── launchDiscord.run.xml
├── src
├── members.scss
├── main.scss
├── settings.scss
├── guilds.scss
├── profile.scss
├── other.scss
├── vencord.scss
├── channels.scss
├── appbar.scss
├── annoyances.scss
├── vars.scss
├── old_guilds.scss
└── chat.scss
├── stylelint.config.js
├── package.json
├── .editorconfig
├── README.md
├── LICENSE
└── pnpm-lock.yaml
/.env.example:
--------------------------------------------------------------------------------
1 | THEMES_DIR=
2 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea/
2 | /*.iml/
3 | /.vscode/
4 | /node_modules/
5 | /dist/
6 | /.env
7 | /benchmark.csv
8 |
--------------------------------------------------------------------------------
/.github/assets/showcase_1.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rushiiMachine/discord-dracula/HEAD/.github/assets/showcase_1.webp
--------------------------------------------------------------------------------
/.github/assets/showcase_2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rushiiMachine/discord-dracula/HEAD/.github/assets/showcase_2.webp
--------------------------------------------------------------------------------
/.github/assets/showcase_3.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rushiiMachine/discord-dracula/HEAD/.github/assets/showcase_3.webp
--------------------------------------------------------------------------------
/.github/assets/showcase_4.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rushiiMachine/discord-dracula/HEAD/.github/assets/showcase_4.webp
--------------------------------------------------------------------------------
/scripts/utils.js:
--------------------------------------------------------------------------------
1 | import chalk from "chalk";
2 |
3 | export function dateHeader() {
4 | const date = new Date().toLocaleString()
5 | .replace(",", "");
6 |
7 | return chalk.gray(`[${date}]`);
8 | }
9 |
10 | export function clamp(num, min, max) {
11 | return Math.min(Math.max(num, min), max);
12 | }
13 |
--------------------------------------------------------------------------------
/dracula.theme.css:
--------------------------------------------------------------------------------
1 | /**
2 | * @name dracula
3 | * @description cute dracula theme for discord~
4 | * @author rushii
5 | * @version 1.0.0
6 | * @website https://github.com/rushiiMachine/discord-dracula
7 | * @source https://rushiiMachine.github.io/discord-dracula/main.css
8 | */
9 |
10 | @import url("https://rushiiMachine.github.io/discord-dracula/main.css");
11 |
--------------------------------------------------------------------------------
/.run/bench.run.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.run/watch.run.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/members.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for the members/users list on the right side.
3 | */
4 |
5 | // Remove border
6 | div[class^="chat_"] > div[class^="content_"] > div[class^="container_"] {
7 | border: none;
8 | }
9 |
10 | // Better spacing between groups
11 | h3[class*="membersGroup_"] {
12 | margin-bottom: var(--spacing-4);
13 | }
14 |
15 | // Better padding for member items
16 | aside[class^="membersWrap_"] div[class^="childContainer_"] {
17 | padding: 0 4px;
18 | }
19 |
--------------------------------------------------------------------------------
/.run/lint --fix.run.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/stylelint.config.js:
--------------------------------------------------------------------------------
1 | // noinspection JSUnusedGlobalSymbols
2 |
3 | /** @type {import('stylelint').Config} */
4 | export default {
5 | extends: ["stylelint-config-standard-scss"],
6 | rules: {
7 | "scss/comment-no-empty": null,
8 | "scss/double-slash-comment-whitespace-inside": null,
9 | "color-function-alias-notation": null,
10 | "at-rule-empty-line-before": null,
11 | "no-duplicate-selectors": null,
12 | "selector-class-pattern": null,
13 | "selector-id-pattern": null,
14 | },
15 | };
16 |
--------------------------------------------------------------------------------
/.run/launchDiscord.run.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/main.scss:
--------------------------------------------------------------------------------
1 | @use "vars";
2 | @use "appbar";
3 | @use "chat";
4 | @use "guilds";
5 | @use "old_guilds";
6 | @use "channels";
7 | @use "profile";
8 | @use "members";
9 | @use "settings";
10 | @use "annoyances";
11 | @use "other";
12 | @use "vencord";
13 |
14 | //// Censoring for theme showcase screenshots
15 | //ul[data-list-id="guildsnav"] img[class^="icon_"], // Guilds list
16 | //div[data-list-id^="private-channels"] div[class^="name_"], // DM names
17 | //span[class*="username_"], // Usernames
18 | //div[class^="nameTag_"] > div[class^="panelTitleContainer_"], // Current user username
19 | //div[class^="nowPlayingColumn_"] div[data-text-variant="text-md/semibold"],
20 | //{
21 | // filter: blur(10px);
22 | //}
23 |
--------------------------------------------------------------------------------
/src/settings.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for all settings pages.
3 | */
4 |
5 | // Less rounding
6 | button[class*="button_"] {
7 | border-radius: var(--radius-xs);
8 | }
9 |
10 | // Remove outlined button look
11 | button[class*="lookOutlined_"][class*="colorRed_"] {
12 | // Apply lookFilled_ class
13 | background-color: var(--button-danger-background) !important;
14 | color: var(--white) !important;
15 |
16 | &:hover {
17 | background-color: var(--button-danger-background-hover) !important;
18 | }
19 | }
20 |
21 | // Switches
22 | div[class^="control_"] {
23 | // Is checked
24 | & > div[class*="checked_"] {
25 | background-color: var(--dracula-accent) !important;
26 | border: none !important;
27 |
28 | & > svg > svg > path {
29 | fill: var(--dracula-accent);
30 | }
31 | }
32 | }
33 |
34 | // Larger bottom padding for settings page
35 | div[class^="contentColumn_"] {
36 | padding-bottom: 110px;
37 | }
38 |
39 | // Radio button setting
40 | div[role="radio"] {
41 | color: var(--text-primary) !important;
42 | background-color: var(--dracula-secondary);
43 | }
44 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "discord-dracula",
3 | "description": "cute dracula theme for discord",
4 | "type": "module",
5 | "private": "true",
6 | "scripts": {
7 | "bench": "pnpm dev && node ./scripts/remoteBenchmark.js",
8 | "build": "pnpm lint && node ./scripts/build.js",
9 | "dev": "node ./scripts/dev.js",
10 | "launchDiscord": "node ./scripts/launchDiscord.js",
11 | "lint": "stylelint \"./src/**.scss\"",
12 | "lint:fix": "pnpm lint --fix",
13 | "watch": "pnpm dev --watch"
14 | },
15 | "devDependencies": {
16 | "@types/chrome-remote-interface": "^0.31.14",
17 | "@types/node": "^22.15.30",
18 | "chalk": "^5.4.1",
19 | "chokidar": "^4.0.3",
20 | "chrome-remote-interface": "^0.33.3",
21 | "cli-table3": "^0.6.5",
22 | "csv-parse": "^5.6.0",
23 | "dotenv": "^16.5.0",
24 | "sass": "^1.89.1",
25 | "stylelint": "^16.20.0",
26 | "stylelint-config-standard-scss": "^15.0.1"
27 | },
28 | "engines": {
29 | "node": ">=22",
30 | "pnpm": ">=10"
31 | },
32 | "pnpm": {
33 | "onlyBuiltDependencies": [
34 | "@parcel/watcher"
35 | ]
36 | },
37 | "packageManager": "pnpm@10.12.1"
38 | }
39 |
--------------------------------------------------------------------------------
/scripts/build.js:
--------------------------------------------------------------------------------
1 | import {mkdirSync, writeFileSync} from "node:fs";
2 | import {join} from "node:path";
3 | import chalk from "chalk";
4 | import * as sass from "sass";
5 |
6 | import {dateHeader} from "./utils.js";
7 |
8 | const srcPath = join(import.meta.dirname, "../src/main.scss");
9 | const distPath = join(import.meta.dirname, "../dist");
10 | const outCssPath = join(distPath, "main.css");
11 | const outMapPath = join(distPath, "main.css.map");
12 |
13 | try {
14 | let output = `
15 | /**
16 | * @name dracula
17 | * @description cute dracula theme for discord~
18 | * @author rushii
19 | * @website https://github.com/rushiiMachine/discord-dracula
20 | */
21 | /* This file is not versioned and is not linked to an update URL! */
22 | `.trimStart();
23 |
24 | const result = sass.compile(srcPath, {
25 | sourceMap: true,
26 | style: "compressed",
27 | verbose: true,
28 | }
29 | );
30 |
31 | output += result.css;
32 | output += "\n/*# sourceMappingURL=main.css.map */";
33 |
34 | mkdirSync(distPath, {recursive: true});
35 | writeFileSync(outCssPath, output);
36 | writeFileSync(outMapPath, JSON.stringify(result.sourceMap));
37 |
38 | console.log(dateHeader() + chalk.green(" Successfully compiled theme."));
39 | } catch (e) {
40 | console.log(dateHeader() + chalk.red(" Failed to compile theme"));
41 | console.log(e.sassMessage ? e.message : e);
42 | }
43 |
--------------------------------------------------------------------------------
/src/guilds.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for the guilds list.
3 | */
4 |
5 | // Better "scroll" unread guilds list indicator
6 | div[class^="unreadMentionsIndicatorTop_"] > div {
7 | box-shadow: 0 2px 12px var(--opacity-black-76) !important;
8 | }
9 |
10 | div[class^="unreadMentionsIndicatorBottom_"] > div {
11 | box-shadow: 0 -2px 12px var(--opacity-black-76) !important;
12 | }
13 |
14 | // Accent color on guild unread indicators
15 | ul[data-list-id="guildsnav"] div[class^="pill_"] > span {
16 | background-color: var(--dracula-accent-light);
17 | }
18 |
19 | // Accent color on Discord logo and guild folders
20 | div[data-list-item-id="guildsnav___home"] {
21 | & > div {
22 | color: var(--dracula-accent-light);
23 | background-color: var(--dracula-primary) !important;
24 | }
25 |
26 | &:hover > div, &[class*="selected_"] > div {
27 | color: var(--dracula-accent-light) !important;
28 | background-color: var(--dracula-primary-light) !important;
29 | }
30 | }
31 |
32 | // Pending guild applications folder (clans)
33 | ul[data-list-id="guildsnav"] > div > div[class^="stack_"] > div[class^="container_"] {
34 | margin-top: 8px;
35 |
36 | div[class^="folderWrapperCollapsed_"] {
37 | margin-top: 0;
38 | margin-bottom: 8px;
39 | }
40 |
41 | svg[class^="pendingIcon_"] {
42 | color: var(--dracula-accent);
43 | }
44 | }
45 |
46 | // Better spacing between unread DMs and guilds
47 | div[class^="guildSeparator_"] {
48 | margin-top: var(--spacing-12);
49 | margin-bottom: var(--spacing-8);
50 | background-color: rgba(255 255 255 / 15%) !important;
51 | }
52 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | end_of_line = lf
6 | tab_width = 4
7 | indent_size = 4
8 | indent_style = tab
9 | insert_final_newline = true
10 | max_line_length = 100
11 | trim_trailing_whitespace = true
12 | ij_continuation_indent_size = 4
13 | ij_formatter_tags_enabled = true
14 | ij_formatter_off_tag = @formatter:off
15 | ij_formatter_on_tag = @formatter:on
16 | ij_smart_tabs = false
17 | ij_visual_guides = none
18 | ij_wrap_on_typing = false
19 |
20 | [.run/**.run.xml]
21 | ij_formatter_enabled = false
22 |
23 | [pnpm-lock.yaml]
24 | ij_formatter_enabled = false
25 |
26 | [{*.markdown,*.md}]
27 | indent_size = 2
28 | ij_markdown_force_one_space_after_blockquote_symbol = true
29 | ij_markdown_force_one_space_after_header_symbol = true
30 | ij_markdown_force_one_space_after_list_bullet = true
31 | ij_markdown_force_one_space_between_words = true
32 | ij_markdown_insert_quote_arrows_on_wrap = true
33 | ij_markdown_keep_indents_on_empty_lines = false
34 | ij_markdown_keep_line_breaks_inside_text_blocks = true
35 | ij_markdown_max_lines_around_block_elements = 1
36 | ij_markdown_max_lines_around_header = 1
37 | ij_markdown_max_lines_between_paragraphs = 1
38 | ij_markdown_min_lines_around_block_elements = 1
39 | ij_markdown_min_lines_around_header = 1
40 | ij_markdown_min_lines_between_paragraphs = 1
41 | ij_markdown_wrap_text_if_long = true
42 | ij_markdown_wrap_text_inside_blockquotes = true
43 |
44 | [*.yml]
45 | tab_width = 2
46 | indent_size = 2
47 | ij_yaml_align_values_properties = do_not_align
48 | ij_yaml_autoinsert_sequence_marker = true
49 | ij_yaml_block_mapping_on_new_line = false
50 | ij_yaml_indent_sequence_value = true
51 | ij_yaml_keep_indents_on_empty_lines = false
52 | ij_yaml_keep_line_breaks = true
53 | ij_yaml_sequence_on_new_line = false
54 | ij_yaml_space_before_colon = false
55 | ij_yaml_spaces_within_braces = true
56 | ij_yaml_spaces_within_brackets = true
57 |
--------------------------------------------------------------------------------
/scripts/benchmark.js:
--------------------------------------------------------------------------------
1 | // Based on https://github.com/refact0r/system24/blob/main/benchmark/benchmark.js
2 | // MIT License Copyright (c) 2024 refact0r
3 |
4 | // The $benchmarkSelectors(css) function should be used within a DOM environment.
5 |
6 | function $extractSelectors(css) {
7 | // Remove comments
8 | css = css.replace(/\/\*[\s\S]*?\*\//g, '');
9 |
10 | // Remove nested brackets
11 | let result = '';
12 | let depth = 0;
13 | for (let char of css) {
14 | if (char === '{') depth++;
15 | else if (char === '}') depth--;
16 | else if (depth === 0) result += char;
17 | }
18 | css = result;
19 |
20 | return css
21 | // Split by commas or newline
22 | .split(/,(?![^(]*\))|[\n\r]+/)
23 | // Trim pseudo-elements
24 | .map((s) => s.trim().replace(/::(?:before|after)/, ''))
25 | // Remove empty strings
26 | .filter(Boolean)
27 | // Remove non-selectors
28 | .filter(s => !["@charset", "@import", "@keyframes",].find(i => s.startsWith(i)));
29 | }
30 |
31 | function $benchmarkSelector(selector) {
32 | // Going higher doesn't mean more accurate results, just that
33 | // chromium has optimized for that specific selector making it seem faster.
34 | const runCount = 100;
35 |
36 | const start = performance.now();
37 | let matches = 0;
38 |
39 | for (let i = 0; i < runCount; i++)
40 | matches = document.querySelectorAll(selector).length;
41 |
42 | return [(performance.now() - start) / runCount, matches];
43 | }
44 |
45 | function $benchmarkSelectors(css) {
46 | return $extractSelectors(css)
47 | .map((selector) => {
48 | try {
49 | const [time, matches] = $benchmarkSelector(selector);
50 | return {selector, time, matches};
51 | } catch (error) {
52 | console.error(`Error benchmarking "${selector}": ${error.message}`);
53 | return null;
54 | }
55 | })
56 | .filter(Boolean) // Remove failed benchmarks
57 | .sort((a, b) => b.time - a.time) // Sort by time descending
58 | .map(({selector, time, matches}) =>
59 | `"${selector.replaceAll('"', '""')}",${time.toFixed(4)},${matches}`)
60 | .join('\n')
61 | .replace(/^/, 'Selector,Time (ms),Matches\n'); // Add CSV headers
62 | }
63 |
--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
1 | name: Build
2 |
3 | on:
4 | push:
5 | branches-ignore: [ "builds" ]
6 | paths-ignore: [ "**.md" ]
7 | pull_request:
8 | paths-ignore: [ "**.md" ]
9 | workflow_dispatch:
10 |
11 | jobs:
12 | build:
13 | runs-on: ubuntu-latest
14 | timeout-minutes: 5
15 | permissions:
16 | contents: read
17 | steps:
18 | - name: Checkout repository
19 | uses: actions/checkout@v4
20 |
21 | - name: Setup Node.js 24
22 | uses: actions/setup-node@v4
23 | with:
24 | node-version: 24
25 |
26 | - name: Setup PNPM and dependencies
27 | uses: pnpm/action-setup@v4
28 | with:
29 | run_install: |
30 | args: [--frozen-lockfile]
31 |
32 | - name: Build Theme
33 | run: pnpm build
34 |
35 | - name: Upload build artifacts
36 | uses: actions/upload-artifact@v4
37 | with:
38 | name: discord-dracula
39 | if-no-files-found: error
40 | path: |
41 | ${{ github.workspace }}/dist/main.css
42 | ${{ github.workspace }}/dist/main.css.map
43 |
44 | publish:
45 | runs-on: ubuntu-latest
46 | timeout-minutes: 3
47 | needs: [ build ]
48 | if: github.ref_name == 'master'
49 | permissions:
50 | contents: write
51 | concurrency:
52 | group: "build"
53 | cancel-in-progress: true
54 | steps:
55 | - name: Checkout builds
56 | uses: actions/checkout@v4
57 | with:
58 | ref: builds
59 | path: builds
60 |
61 | - name: Download build artifacts
62 | uses: actions/download-artifact@v4
63 | with:
64 | name: discord-dracula
65 | path: artifacts
66 |
67 | - name: Deploy theme
68 | run: |
69 | mv $GITHUB_WORKSPACE/artifacts/* $GITHUB_WORKSPACE/builds
70 | cd $GITHUB_WORKSPACE/builds
71 |
72 | git config --local user.email "actions@github.com"
73 | git config --local user.name "GitHub Actions"
74 | git add .
75 | if [[ `git status --porcelain` ]]; then
76 | git commit -m "Build $GITHUB_SHA"
77 | git push
78 | fi
79 |
--------------------------------------------------------------------------------
/scripts/dev.js:
--------------------------------------------------------------------------------
1 | import {copyFileSync, existsSync, mkdirSync, writeFileSync} from "node:fs";
2 | import {join} from "node:path";
3 | import {watch} from "chokidar";
4 | import chalk from "chalk";
5 | import dotenv from "dotenv";
6 | import * as sass from "sass";
7 |
8 | import {dateHeader} from "./utils.js";
9 |
10 | const dotenvResult = dotenv.config();
11 | const themesDir = dotenvResult.parsed?.THEMES_DIR;
12 |
13 | const srcDir = join(import.meta.dirname, "../src");
14 | const srcPath = join(srcDir, "main.scss");
15 | const distPath = join(import.meta.dirname, "../dist");
16 | const devCssPath = join(distPath, "dev.css");
17 |
18 | if (dotenvResult.error || !themesDir) {
19 | const envPath = join(import.meta.dirname, "../.env");
20 | const envExamplePath = join(import.meta.dirname, "../.env.example");
21 |
22 | console.log(chalk.red("In order to test this theme, set the "
23 | + chalk.underline("THEMES_DIR") + " variable in .env to your client mod's "
24 | + chalk.underline("themes") + " directory!"));
25 | console.log();
26 |
27 | if (!existsSync(envPath)) {
28 | copyFileSync(envExamplePath, envPath);
29 | }
30 |
31 | process.exit(1);
32 | }
33 |
34 | if (!existsSync(themesDir)) {
35 | console.log(chalk.red("Specified theme directory "
36 | + chalk.underline("THEMES_DIR") + " in .env does not exist! "
37 | + chalk.white("(")
38 | + chalk.gray(chalk.dim(themesDir))
39 | + chalk.white(")")));
40 | console.log();
41 |
42 | process.exit(1);
43 | }
44 |
45 | function compile() {
46 | const remoteCssPath = join(themesDir, "dracula.theme.css");
47 |
48 | try {
49 | const result = sass.compile(srcPath, {
50 | sourceMap: false,
51 | style: "expanded",
52 | verbose: true,
53 | }
54 | );
55 |
56 | let header = `
57 | /**
58 | * @name dracula
59 | * @description cute dracula theme for discord~
60 | * @author rushii
61 | * @website https://github.com/rushiiMachine/discord-dracula
62 | */
63 | `.trimStart();
64 |
65 | mkdirSync(distPath, {recursive: true});
66 | writeFileSync(devCssPath, header + result.css);
67 | writeFileSync(remoteCssPath, header + result.css);
68 | return true;
69 | } catch (e) {
70 | console.log(dateHeader() + chalk.red(" Failed to compile theme"));
71 | console.log(e.sassMessage ? e.message : e);
72 | return false;
73 | }
74 | }
75 |
76 | console.log(chalk.dim("Writing to theme directory " + chalk.gray(chalk.dim(themesDir))));
77 | console.log();
78 |
79 | if (process.argv.includes("--watch")) {
80 | console.log(dateHeader() + chalk.green(" Watching for changes..."));
81 |
82 | watch(srcDir).on("change", () => {
83 | if (compile()) {
84 | console.log(dateHeader() + chalk.green(" Successfully recompiled theme."));
85 | }
86 | });
87 | }
88 |
89 | if (compile()) {
90 | console.log(dateHeader() + chalk.green(" Successfully compiled theme."));
91 | }
92 |
--------------------------------------------------------------------------------
/src/profile.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for user profiles (compact and expanded).
3 | */
4 |
5 | /****** User Profile Popout ******/
6 |
7 | // User notes
8 | .user-profile-modal:not(.custom-user-profile-theme) div[class^="note_"] > textarea {
9 | background-color: var(--dracula-tertiary);
10 | }
11 |
12 | // Better inner padding
13 | .user-profile-modal div[class^="container_"] {
14 | & > div[class^="tabBar_"] {
15 | padding: 0 26px;
16 | justify-content: space-between;
17 | border-bottom: 2px solid var(--user-profile-border);
18 | }
19 |
20 | // About Me tab body
21 | & > div[class^="scroller_"] {
22 | padding: 16px 26px 28px !important;
23 |
24 | & > :first-child::before {
25 | content: "Biography";
26 | font-family: var(--font-primary);
27 | font-size: 12px;
28 | font-weight: 600;
29 | line-height: 2.2;
30 | margin-bottom: 100px;
31 | padding-bottom: 100px;
32 | overflow: visible;
33 | }
34 | }
35 |
36 | // All other tab bodies
37 | & > div[class^="listScroller_"] {
38 | padding-left: 10px;
39 | padding-top: 18px;
40 | }
41 |
42 | // Change Status text button
43 | span[class^="inner_"] {
44 | cursor: pointer;
45 | }
46 |
47 | // User notes
48 | div[class^="note_"] > textarea {
49 | margin-top: 6px;
50 | padding: 10px;
51 | border: 1px solid transparent;
52 |
53 | &:focus {
54 | border: 1px solid var(--dracula-accent);
55 | }
56 | }
57 | }
58 |
59 | // Roles
60 | div[class^="role_"] {
61 | border: none;
62 | padding: 8px 6px;
63 | gap: 2px;
64 |
65 | .user-profile-modal:not(.custom-user-profile-theme) & {
66 | background-color: var(--dracula-tertiary);
67 | }
68 | }
69 |
70 | // Add role button
71 | div[data-list-id^="roles-"] > div > button {
72 | border: none;
73 | }
74 |
75 | // User account connection card
76 | li[class^="connectedAccountContainer_"] {
77 | border: none;
78 |
79 | .user-profile-modal:not(.custom-user-profile-theme) & {
80 | background-color: var(--dracula-tertiary);
81 | }
82 |
83 | img {
84 | filter: brightness(80%);
85 | }
86 | }
87 |
88 |
89 | /****** Current User Bar ******/
90 |
91 | // No persistent red background glow on mute/deafen buttons
92 | div[class^="buttons_"] {
93 | button[class*="redGlow_"] {
94 | background-color: unset !important;
95 | }
96 |
97 | button:hover {
98 | background-color: var(--background-modifier-selected) !important;
99 | }
100 | }
101 |
102 | // Fit the bar to channels list like before Visual Refresh
103 | div[class^="sidebar_"] {
104 | & > nav[class*="guilds_"] {
105 | margin-bottom: 0;
106 | }
107 |
108 | & > section[class^="panels_"] {
109 | right: var(--space-xs) !important;
110 | left: auto;
111 | bottom: 2px;
112 | width: calc(100% - var(--space-xs) * 2 - var(--custom-guild-list-width));
113 | padding-left: 4px;
114 | border: none;
115 | background-color: var(--dracula-secondary);
116 | }
117 | }
118 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ₊˚ discord-dracula ˚₊
2 |
3 | cute dracula theme for discord~
4 |
5 | partially restores the old layout prior to the *visual refresh*
6 |
7 |
8 |
9 |
10 | Additional Screenshots
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | ## ♡ installation
20 |
21 | Add the following snippet **to the top** of your custom css, and **enable dark mode**:
22 |
23 | ```css
24 | @import url("https://rushiiMachine.github.io/discord-dracula/main.css");
25 | ```
26 |
27 | Alternatively, you can download [`dracula.theme.css`] and add it to your
28 | client mod's `themes` folder! (right-click > *Save As*)
29 |
30 | If using Vencord, it is recommended to enable the `PlainFolderIcon` plugin in order
31 | to always display the folder icons shown in the screenshots!
32 |
33 | ---
34 |
35 | If you like what you see, please consider [sponsoring me ♡] on GitHub, or leaving a star!
36 |
37 | ### Experiments plugin
38 |
39 | If you are using the Experiments plugin on Vencord with the "Toolbar Dev Menu" option
40 | enabled, you need to add this CSS snippet to your Custom CSS:
41 |
42 | ```css
43 | section[class^="title_"] > div > div[class^="toolbar_"]::after {
44 | width: 190px;
45 | }
46 | ```
47 |
48 | ## ♡ credits
49 |
50 | This theme is inspired by an outdated theme created by fawn: [`fawni/dracula`]!\
51 | Visual Refresh revert for guilds list from [`scattagain/VencordStuff`].\
52 | Other Visual Refresh reverts from [`MaiRiosIPla/unshittify-discord`].
53 |
54 | ## ♡ developing
55 |
56 | If you want to contribute, install [Node.js] 22+, and run the following commands:
57 |
58 | ```shell
59 | $ git clone https://github.com/rushiiMachine/discord-dracula
60 | $ cd discord-dracula
61 | $ npm install --global corepack
62 | $ corepack install
63 | $ pnpm install
64 | # Configure .env
65 | $ pnpm watch
66 | ```
67 |
68 | Before running the final command, copy the `.env.example` file to `.env`, and populate
69 | the `THEME_DIR` variable with a path to your client mod's `themes` directory.
70 | This is to allow for hot-reloading the compiled theme.
71 | After running `pnpm watch`, any changes inside the `src` directory will cause the
72 | theme to be recompiled and reapplied.
73 |
74 | [//]: # (@formatter:off)
75 |
76 | [`dracula.theme.css`]: https://github.com/rushiiMachine/discord-dracula/blob/master/dracula.theme.css
77 | [sponsoring me ♡]: https://github.com/sponsors/rushiiMachine
78 | [`fawni/dracula`]: https://github.com/fawni/dracula
79 | [`scattagain/VencordStuff`]: https://github.com/scattagain/VencordStuff
80 | [`MaiRiosIPla/unshittify-discord`]: https://github.com/MaiRiosIPla/unshittify-discord
81 | [Node.js]: https://nodejs.org/en
82 |
83 | [//]: # (@formatter:on)
84 |
85 |
--------------------------------------------------------------------------------
/src/other.scss:
--------------------------------------------------------------------------------
1 | /****** Inbox popout ******/
2 |
3 | // Remove border from messages
4 | div[class^="layerContainer_"] {
5 | div[class^="messages_"],
6 | div[class^="messageContainer_"],
7 | {
8 | border: none;
9 | border-radius: 8px !important;
10 | }
11 | }
12 |
13 | // Better padding for Friend Requests tab
14 | div[data-list-id="for-you"] {
15 | margin-top: var(--spacing-16);
16 | margin-bottom: var(--spacing-16);
17 | }
18 |
19 | div[class*="recentMentionsPopout_"] {
20 | // Make it larger
21 | min-height: 90vh;
22 | max-height: 100vh !important;
23 | min-width: 600px;
24 |
25 | // Better colors
26 | --background-surface-high: var(--dracula-tertiary);
27 | --background-surface-higher: var(--dracula-secondary);
28 |
29 | box-shadow: var(--shadow-high);
30 |
31 | // Fix avatars/guild icons rounding
32 | div[class*="guildIcon_"],
33 | img[class^="dmIcon_"] {
34 | border-radius: 100%;
35 | background-color: transparent;
36 | }
37 |
38 | // Better header padding
39 | div[class^="channelHeader_"] {
40 | padding-left: 38px;
41 | }
42 |
43 | div[class^="collapseButton_"] {
44 | padding-left: 12px;
45 | }
46 |
47 | // Better spacing for tabs
48 | div[class^="tabBar_"] {
49 | padding: 0 26px;
50 | justify-content: space-between;
51 |
52 | // Hover text color for tab
53 | --text-primary: var(--dracula-accent-light);
54 | }
55 |
56 | // Friend requests button badge
57 | div[class^="numberBadge_"] {
58 | background-color: var(--status-danger) !important;
59 | }
60 | }
61 |
62 | /****** Pinned popout ******/
63 |
64 | .visual-refresh div[class^="messagesPopoutWrap_"] {
65 | max-height: 90vh !important;
66 | width: 600px;
67 |
68 | div[class^="messagesPopout_"] {
69 | padding: 12px 8px 8px 16px !important;
70 | }
71 |
72 | div[class^="messageGroupWrapper_"] {
73 | border: none;
74 | border-radius: 8px;
75 | padding-left: 4px;
76 | }
77 | }
78 |
79 | /****** Channel topic popout ******/
80 |
81 | div[class^="modal_"] {
82 | border: none !important;
83 | border-radius: 8px !important;
84 | padding-bottom: 8px;
85 | }
86 |
87 | /****** DM Channel user sidebar ******/
88 |
89 | // Mutual server icons
90 | div[class*="listAvatar_"] {
91 | border-radius: 100%;
92 | }
93 |
94 | /****** Context Menus ******/
95 |
96 | div[class^="menu_"], div[class^="submenu_"] {
97 | --header-primary: var(--white-560); // text color
98 |
99 | background-color: var(--dracula-tertiary);
100 | box-shadow: var(--shadow-low);
101 | border-radius: 8px;
102 | border: none;
103 |
104 | & > div {
105 | padding: 8px 10px;
106 | }
107 |
108 | // Fix emoji sizing
109 | div[class^="customItem_"] > div {
110 | border-radius: 100px !important;
111 |
112 | img {
113 | height: 22px;
114 | width: 22px;
115 | image-rendering: smooth;
116 | }
117 | }
118 | }
119 |
120 | /****** Other Popouts ******/
121 |
122 | div[class^="root_"],
123 | div[class^="container_"],
124 | div[class^="tooltip_"],
125 | div[class^="scroller_"],
126 | div[class^="confirmation_"],
127 | div[class^="formNotice_"],
128 | div[class^="preview_"],
129 | section,
130 | {
131 | border: none !important;
132 | }
133 |
134 | div[class^="wrapper_"] {
135 | box-shadow: none !important;
136 | }
137 |
138 | div[class^="popout_"] {
139 | border-radius: var(--radius-sm);
140 | background-color: var(--dracula-tertiary);
141 | }
142 |
143 | // Reaction info popout
144 | div[class^="popoutContainer_"] {
145 | box-shadow: var(--shadow-medium) !important;
146 | background-color: var(--dracula-tertiary) !important;
147 | }
148 |
149 | // Threads list hover pop out's "See All" text button
150 | div[class^="more_"] {
151 | border-top: none;
152 | padding-top: 0;
153 | padding-bottom: 16px;
154 | }
155 |
--------------------------------------------------------------------------------
/src/vencord.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theme fixes for specifically Vencord features/UI addons.
3 | */
4 |
5 | /****** Vencord Settings Special Cards ******/
6 |
7 | // Remove the fancy background of cards
8 | .vc-special-card {
9 | margin-bottom: 1.3em;
10 | background: var(--dracula-secondary) none !important;
11 | }
12 |
13 | // Fix text colors
14 |
15 | .vc-special-title {
16 | color: var(--text-primary);
17 | font-weight: 700;
18 | font-size: 1.2em;
19 | }
20 |
21 | .vc-special-subtitle, .vc-special-text {
22 | color: var(--text-normal);
23 | }
24 |
25 | .vc-special-hyperlink {
26 | margin: 0;
27 | }
28 |
29 | .vc-special-hyperlink-text {
30 | font-weight: 600 !important;
31 | text-decoration: underline;
32 | color: var(--dracula-accent-light) !important;
33 |
34 | &:hover {
35 | filter: brightness(120%);
36 | }
37 | }
38 |
39 | // Support card title
40 | .vc-special-card-flex-main:has(button) .vc-special-title {
41 | margin-top: 6px;
42 | }
43 |
44 | // Donate button container
45 | .vc-special-card-flex-main > button {
46 | background-color: var(--dracula-accent-alpha-90) !important;
47 |
48 | &:hover {
49 | filter: brightness(110%);
50 | }
51 | }
52 |
53 | .vc-donate-button {
54 | display: flex;
55 | color: var(--text-primary);
56 | }
57 |
58 | .vc-heart-icon {
59 | translate: 0;
60 | filter: drop-shadow(0 1px 3px rgb(0 0 0 / 30%));
61 | }
62 |
63 | // Remove unnecessary title from contributors card
64 | .vc-special-card-flex-main:not(:has(> button)) .vc-special-title {
65 | display: none;
66 | }
67 |
68 | // Remove unnecessary separators in contributors card
69 | .vc-special-seperator {
70 | display: none;
71 | }
72 |
73 | // Remove white background of blobcatcozy images
74 | .vc-special-image-container {
75 | background: none;
76 | }
77 |
78 |
79 | /****** Vencord Settings Buttons ******/
80 |
81 | // Settings buttons card
82 | .vc-settings-quickActions-card {
83 | border: none !important;
84 | background: none !important;
85 | padding: var(--spacing-8) 0;
86 | }
87 |
88 | // Settings buttons
89 |
90 | .vc-settings-quickActions-pill {
91 | padding: var(--spacing-12);
92 | font-weight: 500;
93 | font-size: 15px;
94 | }
95 |
96 | .vc-settings-quickActions-img {
97 | width: 20px;
98 | height: 20px;
99 | color: var(--dracula-accent);
100 | }
101 |
102 |
103 | /****** Vencord Plugin/Theme Cards ******/
104 |
105 | .vc-plugins-info-card, .vc-settings-card {
106 | border: none !important;
107 | }
108 |
109 | .vc-addon-card {
110 | padding: 14px 20px 20px;
111 | border: none !important;
112 | }
113 |
114 | // Add more info to own theme card
115 | .vc-settings-theme-grid .vc-addon-card a[href="https://github.com/rushiiMachine/discord-dracula"] {
116 | // Collapse the original line
117 | text-indent: -9999px;
118 | line-height: 0;
119 |
120 | &:hover {
121 | text-decoration: underline;
122 | filter: brightness(120%);
123 | }
124 |
125 | &::after {
126 | text-indent: 0;
127 | display: block;
128 | line-height: initial; // New content takes up original line height
129 | content: "Please consider leaving a star or sponsoring me on GitHub ♡";
130 | font-size: 14px;
131 | }
132 | }
133 |
134 |
135 | /****** Vencord Plugins Settings ******/
136 |
137 | // Better shiki codeblocks
138 | .vc-shiki-code {
139 | border-radius: var(--radius-xs);
140 | }
141 |
142 | // Better spacing between for channel typing indicator and the avatars
143 | .vc-typing-indicator-avatars {
144 | margin-right: 4px;
145 | }
146 |
147 | // Order channel typing indicators after buttons/mention count
148 | .vc-typing-indicator {
149 | order: 1;
150 | }
151 |
152 | a[data-list-item-id^="channels__"] > div > div[class^="children_"] {
153 | order: 2;
154 | }
155 |
156 | // Online friend count in guilds list
157 | #vc-friendcount {
158 | color: var(--text-secondary) !important;
159 | margin-bottom: 4px;
160 | }
161 |
--------------------------------------------------------------------------------
/scripts/launchDiscord.js:
--------------------------------------------------------------------------------
1 | import {copyFileSync, existsSync} from "node:fs";
2 | import {basename, join} from "node:path";
3 | import {execSync, spawn} from "node:child_process";
4 | import chalk from "chalk";
5 | import dotenv from "dotenv";
6 | import * as os from "node:os";
7 |
8 | import {dateHeader} from "./utils.js";
9 |
10 | const dotenvResult = dotenv.config();
11 | const electronPath = dotenvResult.parsed?.DISCORD_EXE;
12 |
13 | if (dotenvResult.error || !electronPath) {
14 | const envPath = join(import.meta.dirname, "../.env");
15 | const envExamplePath = join(import.meta.dirname, "../.env.example");
16 |
17 | console.log(chalk.red("In order to launch discord with the debugging flag, set the "
18 | + chalk.underline("DISCORD_EXE") +
19 | " variable in .env to either Discord's or Vesktop's executable!"));
20 |
21 | console.log();
22 |
23 | if (!existsSync(envPath)) {
24 | copyFileSync(envExamplePath, envPath);
25 | }
26 |
27 | process.exit(1);
28 | }
29 |
30 | if (!existsSync(electronPath)) {
31 | console.log(chalk.red("Specified Discord executable by the "
32 | + chalk.underline("DISCORD_EXE") + " variable in .env does not exist! "
33 | + chalk.white("(")
34 | + chalk.gray(chalk.dim(electronPath))
35 | + chalk.white(")")));
36 | console.log();
37 |
38 | process.exit(1);
39 | }
40 |
41 | // Check that the path is not the Squirrel updater
42 | if (basename(electronPath).startsWith("Update")) {
43 | console.log(chalk.red("Specified Discord executable is not Electron, " +
44 | "but a Squirrel updater! Make sure to specify the "
45 | + chalk.bold("Discord*.exe") +
46 | " located in one of the "
47 | + chalk.bold("app-1.0.*") +
48 | " directories!"));
49 | console.log();
50 |
51 | process.exit(1);
52 | }
53 |
54 | console.log(dateHeader() + " Targeting " + chalk.dim(chalk.bold(electronPath)));
55 |
56 | try {
57 | // Kill any running instances
58 | console.log(dateHeader() + " Killing any existing instances...");
59 | for (const pid of await getPidsByExecutablePath(electronPath)) {
60 | try {
61 | console.log(dateHeader() + ` Killing pid ${pid}`);
62 | process.kill(parseInt(pid));
63 | } catch (e) {
64 | console.log(dateHeader() + chalk.yellow(` Failed to kill pid ${pid}`));
65 | }
66 | }
67 |
68 | console.log(dateHeader() + " Launching Discord...");
69 |
70 | // Spawn new process and detach it
71 | const proc = spawn(electronPath, [
72 | "--remote-debugging-port=9222",
73 | "--js-flags=--allow-natives-syntax",
74 | ], {
75 | detached: true,
76 | stdio: ["ignore", "ignore", "ignore",]
77 | });
78 | proc.unref();
79 |
80 | console.log(dateHeader() + chalk.green(" Successfully launched Discord with flags!"));
81 | } catch (e) {
82 | console.log(e);
83 | console.log();
84 | console.log(dateHeader() + chalk.red(" Failed to launch Discord!"));
85 | }
86 |
87 | /**
88 | * Get a list of PIDs for processes matching a specific executable path.
89 | * Works on Windows and Linux..
90 | *
91 | * @param {string} execPath - Full path to the executable
92 | * @returns {Promise} - Array of matching process IDs
93 | */
94 | async function getPidsByExecutablePath(execPath) {
95 | const platform = os.platform();
96 |
97 | let command;
98 | if (platform === 'win32') {
99 | command = `powershell -Command "Get-CimInstance Win32_Process | Where-Object { $_.ExecutablePath -eq '${execPath}' } | Select-Object -ExpandProperty ProcessId"`;
100 | } else if (platform === 'darwin') {
101 | throw "macOS support is unimplemented!";
102 | } else {
103 | const escaped = execPath.replace(/(["'$`\\])/g, '\\$1');
104 | command = `pidof '${escaped}' | sed 's/ /\\n/'`;
105 | }
106 |
107 | const stdout = execSync(command, {
108 | stdio: ["ignore", null, "inherit"], // stdin, stdout, stderr
109 | }).toString();
110 |
111 | return stdout
112 | .trim()
113 | .split('\n')
114 | .map(pid => pid.trim())
115 | .filter(Boolean);
116 | }
117 |
--------------------------------------------------------------------------------
/src/channels.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for the channel list & private channels (DMs) list.
3 | */
4 |
5 | div[class^="sidebarList_"] {
6 | // Remove borders
7 | border: none !important;
8 | border-radius: 0 !important;
9 |
10 | // Remove channel list header borders
11 | header[class^="header_"],
12 | div[class^="headerGlass_"],
13 | {
14 | border: none !important;
15 | }
16 |
17 | // Floating mentions channels list indicator
18 | div[role="button"][class*="mentionsBar_"] {
19 | box-shadow: 0 4px 20px var(--opacity-black-56);
20 | }
21 |
22 | // Floating unread channels list indicator
23 | div[class^="bar_"]:has(svg[class^="unreadIcon_"]) {
24 | --interactive-normal: var(--white-530); // text color
25 |
26 | background-color: var(--dracula-accent);
27 | box-shadow: 0 4px 20px var(--opacity-black-56);
28 | }
29 |
30 | // Remove unnecessary padding at the bottom
31 | &::after {
32 | display: none;
33 | }
34 | }
35 |
36 | // Remove random excess padding
37 | div[class^="sidebar_"]::after {
38 | display: none;
39 | }
40 |
41 | /****** DM Items ******/
42 |
43 | %custom-unread-dm-indicator {
44 | content: "";
45 | display: block;
46 | position: absolute;
47 | height: 100%;
48 | width: 2px;
49 | z-index: 999;
50 | }
51 |
52 | div[data-list-id^="private-channels-"] > ul {
53 | padding-right: var(--spacing-4);
54 |
55 | & > li {
56 | border-radius: var(--radius-sm);
57 | }
58 |
59 | & > li > div > a {
60 | padding-left: 12px;
61 | }
62 |
63 | // Original channel unread indicator
64 | div[class^="unreadPill_"] {
65 | display: none;
66 | }
67 |
68 | // Unread DM items
69 | // Custom unread indicator
70 | & > li:has(> div[class^="unreadPill_"])::before {
71 | background-color: var(--white-600);
72 | @extend %custom-unread-dm-indicator;
73 | }
74 |
75 | // Selected DM items
76 |
77 | & > li:has(> div[class*="selected_"]) {
78 | border-top-left-radius: 0;
79 | border-bottom-left-radius: 0;
80 | }
81 |
82 | & > li > div[class*="selected_"] {
83 | background: var(--bg-overlay-selected, var(--background-modifier-selected));
84 |
85 | // Add our own channel indicator
86 | &::before {
87 | background-color: var(--dracula-accent) !important;
88 | @extend %custom-unread-dm-indicator;
89 | }
90 | }
91 | }
92 |
93 | /****** Channel Items ******/
94 |
95 | %custom-unread-channel-indicator {
96 | content: "";
97 | display: block;
98 | position: absolute;
99 | height: 100%;
100 | width: 2px;
101 | left: var(--space-xs);
102 | }
103 |
104 | #channels > ul {
105 | padding-right: var(--spacing-4);
106 |
107 | --text-primary: var(--white-530);
108 | --icon-primary: var(--white-530);
109 |
110 | // Original channel unread indicator
111 | div[class^="unread_"] {
112 | display: none;
113 | }
114 |
115 | // Unread channel item
116 | & > li:has(> div[class*="modeUnreadImportant_"]) {
117 | // Add our own channel indicator
118 | &::before {
119 | background-color: var(--white-600);
120 | @extend %custom-unread-channel-indicator;
121 | }
122 |
123 | a {
124 | border-top-left-radius: 0;
125 | border-bottom-left-radius: 0;
126 | }
127 | }
128 |
129 | // Selected channel item
130 | & > li[class*="selected_"] {
131 | // Add our own channel indicator
132 | &::before {
133 | background-color: var(--dracula-accent);
134 | @extend %custom-unread-channel-indicator;
135 | }
136 |
137 | a { // stylelint-disable-line no-descending-specificity
138 | border-top-left-radius: 0;
139 | border-bottom-left-radius: 0;
140 | }
141 |
142 | svg {
143 | --icon-primary: var(--dracula-accent);
144 | }
145 | }
146 |
147 | // Remove padding between channel items
148 | & > li > div {
149 | padding-top: 0;
150 | padding-bottom: 0;
151 | }
152 |
153 | // Better internal padding for channel items
154 | a[data-list-item-id^="channels_"],
155 | div[data-list-item-id^="channels_"][class^="link_"] {
156 | padding-top: 5.25px;
157 | padding-bottom: 5.25px;
158 | padding-left: 12px;
159 | }
160 |
161 | // Better margin for category items and thread items
162 | div[data-list-item-id^="channels_"][class^="mainContent_"] {
163 | padding-bottom: 0.7rem;
164 | }
165 | }
166 |
--------------------------------------------------------------------------------
/src/appbar.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Theming for the window app bar / top area.
3 | */
4 |
5 | // Make sure scrollbar doesn't overlap with window buttons
6 | div[class^="contentRegionScroller_"] {
7 | --custom-app-top-bar-height: 50px;
8 | }
9 |
10 | // Add padding to guilds list to account for title bar removal
11 | ul[data-list-id="guildsnav"] div[class*="scroller_"] div[class^="tutorialContainer_"] {
12 | margin-top: 1rem;
13 | }
14 |
15 | // Hide old title bar and & move notices to the very top
16 | div[data-fullscreen][class^="base_"] {
17 | // stylelint-disable-next-line value-keyword-case
18 | grid-template-rows: [top] min-content [titleBarEnd] 0 [noticeEnd] 1fr [end];
19 | grid-template-areas:
20 | "notice notice notice"
21 | "titleBar titleBar titleBar"
22 | "guildsList channelsList page";
23 |
24 | // Un-round notices on top of title bar
25 | & > div[class^="notice_"] {
26 | border-radius: 0;
27 | }
28 | }
29 |
30 | // Move search bar/buttons left to make space for window buttons moved down
31 | section[class^="title_"] {
32 | border: none;
33 | overflow: hidden !important;
34 | background-color: var(--dracula-secondary) !important;
35 |
36 | & > div > div[class^="toolbar_"] {
37 | // Spacing for the buttons that moved down as an overlay
38 | // Just padding-right can't be used because otherwise disabling window dragging
39 | // doesn't work. But the ::after pseudo-element does work.
40 | &::after {
41 | content: "";
42 | width: 160px;
43 | height: 36px;
44 | -webkit-app-region: no-drag;
45 | }
46 |
47 | & > div[class^="search_"] {
48 | order: -1;
49 | }
50 | }
51 | }
52 |
53 | // Move down window buttons & inbox
54 | div[data-fullscreen][class^="base_"] > div[class^="bar_"] {
55 | gap: 2px;
56 | width: max-content;
57 | z-index: 1000 !important;
58 | position: absolute;
59 | background-color: var(--background-tertiary);
60 | border-radius: var(--radius-xs);
61 | top: 12px;
62 | right: 12px;
63 | left: unset;
64 | padding: 0;
65 | overflow: hidden;
66 |
67 | // Adjust sizing between buttons
68 | & > div[class^="trailing_"] {
69 | gap: 0;
70 | }
71 |
72 | // Hide old title bar
73 | & > div[class^="title_"] {
74 | display: none;
75 | }
76 | }
77 |
78 | // Make new top app bar draggable
79 | section[class^="title_"] {
80 | -webkit-app-region: drag;
81 |
82 | // Undo drag for interactable items
83 | div[class^="topic_"],
84 | button[class^="followButton_"],
85 | {
86 | -webkit-app-region: no-drag !important;
87 | }
88 | }
89 |
90 | // Better channel title/topic
91 | section[class^="title_"] div[class^="children_"] {
92 | & > div[class^="titleWrapper_"] {
93 | padding-right: 0;
94 | }
95 |
96 | & > svg[class^="dot_"] {
97 | flex: 0 0 auto;
98 | color: whitesmoke;
99 | opacity: 0.3;
100 | }
101 |
102 | &::after {
103 | display: none;
104 | }
105 | }
106 |
107 | // Fix searchbar
108 | div[class^="searchBar_"] {
109 | border: none !important;
110 | border-radius: var(--radius-xs);
111 | height: 36px !important;
112 | align-items: center;
113 | padding: 2px 4px !important;
114 |
115 | .DraftEditor-root {
116 | position: unset;
117 | display: flex;
118 | align-items: center;
119 | }
120 |
121 | .DraftEditor-editorContainer {
122 | flex-grow: 1;
123 | }
124 |
125 | .public-DraftEditorPlaceholder-root {
126 | padding: 0 !important;
127 | margin-left: var(--spacing-4);
128 | }
129 |
130 | .public-DraftEditor-content > div,
131 | .public-DraftEditor-content > div > div,
132 | .public-DraftEditor-content > div > div > div {
133 | height: inherit;
134 | }
135 |
136 | .public-DraftStyleDefault-block {
137 | place-content: center;
138 | }
139 |
140 | // Search filter badge background
141 | --background-surface-highest: var(--dracula-accent-alpha-15);
142 |
143 | // Search filter pair left hand side
144 | div[class*="searchFilter_"] {
145 | border-top-right-radius: 0;
146 | border-bottom-right-radius: 0;
147 | }
148 |
149 | // Search filter pair right hand side
150 | div[class*="searchAnswer_"] {
151 | border-top-left-radius: 0;
152 | border-bottom-left-radius: 0;
153 | padding-left: 0;
154 | }
155 | }
156 |
157 | // Remove left indicator from searchbar autocomplete
158 | li[aria-selected="true"][class^="option_"] {
159 | box-shadow: none;
160 | }
161 |
--------------------------------------------------------------------------------
/src/annoyances.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Removal of various minor annoyances.
3 | */
4 |
5 | /****** DM Channels List ******/
6 |
7 | nav[class^="privateChannels_"] div[class^="searchBar_"] {
8 | display: none;
9 | }
10 |
11 | div[data-list-id^="private-channels"] > ul {
12 | margin-top: var(--spacing-12);
13 |
14 | //// Nitro/Shop buttons towards the top
15 | //& > li:has(> div > a[data-list-item-id$="nitro"]),
16 | //& > li:has(> div > a[data-list-item-id$="shop"]),
17 | //{
18 | // display: none;
19 | //}
20 | }
21 |
22 |
23 | /****** Channels List ******/
24 |
25 | div[class^="sidebarList_"] div[class^="scroller_"] > ul > li {
26 | & > div[data-list-item-id^="channels___progress-bar-"], // Hide onboarding progress bar
27 | & > div[data-list-item-id^="channels___boosts"], // Hide nitro boosts level bar
28 | {
29 | display: none;
30 |
31 | // Hide following separator
32 | & + div[role="separator"] { // stylelint-disable-line no-descending-specificity
33 | display: none;
34 | }
35 | }
36 | }
37 |
38 | // Remove "Create Invite" button from channel items in channels list
39 | a[data-list-item-id^="channels__"] div[class^="children_"] > div:has(> svg > path[d="M19 14a1 1 0 0 1 1 1v3h3a1 1 0 0 1 0 2h-3v3a1 1 0 0 1-2 0v-3h-3a1 1 0 1 1 0-2h3v-3a1 1 0 0 1 1-1Z"]) {
40 | display: none;
41 | }
42 |
43 |
44 | /****** User Context Menus ******/
45 |
46 | // Remove "Invite to server"
47 | #user-context-invite-to-server {
48 | display: none;
49 | }
50 |
51 | #user-profile-overflow-menu-invite-to-server {
52 | display: none;
53 | }
54 |
55 | // Remove "Add Note"
56 | #user-context-note {
57 | display: none;
58 | }
59 |
60 |
61 | /****** App Bar / Channel Toolbar ******/
62 |
63 | // Remove "Help" button from app title
64 | div[class^="trailing_"] a:has(path[d="M12 23a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm-.28-16c-.98 0-1.81.47-2.27 1.14A1 1 0 1 1 7.8 7.01 4.73 4.73 0 0 1 11.72 5c2.5 0 4.65 1.88 4.65 4.38 0 2.1-1.54 3.77-3.52 4.24l.14 1a1 1 0 0 1-1.98.27l-.28-2a1 1 0 0 1 .99-1.14c1.54 0 2.65-1.14 2.65-2.38 0-1.23-1.1-2.37-2.65-2.37ZM13 17.88a1.13 1.13 0 1 1-2.25 0 1.13 1.13 0 0 1 2.25 0Z"]) {
65 | display: none;
66 | }
67 |
68 | // Remove other buttons from chat toolbar
69 | div[class^="toolbar_"] {
70 | // "Show Member List"
71 | div[class^="iconWrapper_"]:has(path[d="M14.5 8a3 3 0 1 0-2.7-4.3c-.2.4.06.86.44 1.12a5 5 0 0 1 2.14 3.08c.01.06.06.1.12.1ZM18.44 17.27c.15.43.54.73 1 .73h1.06c.83 0 1.5-.67 1.5-1.5a7.5 7.5 0 0 0-6.5-7.43c-.55-.08-.99.38-1.1.92-.06.3-.15.6-.26.87-.23.58-.05 1.3.47 1.63a9.53 9.53 0 0 1 3.83 4.78ZM12.5 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM2 20.5a7.5 7.5 0 0 1 15 0c0 .83-.67 1.5-1.5 1.5a.2.2 0 0 1-.2-.16c-.2-.96-.56-1.87-.88-2.54-.1-.23-.42-.15-.42.1v2.1a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2.1c0-.25-.31-.33-.42-.1-.32.67-.67 1.58-.88 2.54a.2.2 0 0 1-.2.16A1.5 1.5 0 0 1 2 20.5Z"]),
72 | // "Show User Profile"
73 | div[class^="iconWrapper_"]:has(path[d="M24 19a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"]),
74 | {
75 | display: none;
76 | }
77 | }
78 |
79 |
80 | /****** Chat ******/
81 |
82 | // No, I don't want to make a thread from a chain of more than 3 replies
83 | div[class*="threadSuggestionBar_"] {
84 | display: none;
85 | }
86 |
87 | // Remove gift button from chat bar
88 | div[class^="channelTextArea_"] div[class^="buttons_"] {
89 | // Send gift button
90 | & > button:has(path[d=" M-7,10 C-8.104999542236328,10 -9,9.104999542236328 -9,8 C-9,8 -9,2.5 -9,2.5 C-9,2.2239999771118164 -8.776000022888184,2 -8.5,2 C-8.5,2 -1.5,2 -1.5,2 C-1.2239999771118164,2 -1,2.2239999771118164 -1,2.5 C-1,2.5 -1,9.5 -1,9.5 C-1,9.776000022888184 -1.2239999771118164,10 -1.5,10 C-1.5,10 -7,10 -7,10z M1,9.5 C1,9.776000022888184 1.2239999771118164,10 1.5,10 C1.5,10 7,10 7,10 C8.104999542236328,10 9,9.104999542236328 9,8 C9,8 9,2.5 9,2.5 C9,2.2239999771118164 8.776000022888184,2 8.5,2 C8.5,2 1.5,2 1.5,2 C1.2239999771118164,2 1,2.2239999771118164 1,2.5 C1,2.5 1,9.5 1,9.5z"]),
91 | {
92 | display: none;
93 | }
94 | }
95 |
96 | /****** Profile customization settings ******/
97 |
98 | #profile-customization-tab {
99 | & > div[class^="tabBar_"] {
100 | margin-bottom: 25px;
101 | }
102 |
103 | // Hide nitro upselling
104 | & > div[class^="container_"],
105 | div[class*="tryItOutSection_"],
106 | div[class^="upsellOverlayContainer_"],
107 | {
108 | display: none;
109 | }
110 | }
111 |
112 | // Hide more nitro upselling
113 | div[class^="upsellContainer_"], div[class^="premiumUpsellButton_"] {
114 | display: none;
115 | }
116 |
--------------------------------------------------------------------------------
/scripts/remoteBenchmark.js:
--------------------------------------------------------------------------------
1 | import {readFileSync, writeFileSync} from "node:fs";
2 | import {join} from "node:path";
3 | import {parse} from "csv-parse/sync";
4 | import chalk from "chalk";
5 | import Table from "cli-table3";
6 | import CDP from "chrome-remote-interface";
7 |
8 | import {clamp, dateHeader} from "./utils.js";
9 |
10 | const cssPath = join(import.meta.dirname, "../dist/dev.css");
11 | const outCsvPath = join(import.meta.dirname, "../benchmark.csv");
12 | const benchScriptPath = join(import.meta.dirname, "./benchmark.js");
13 |
14 | const css = readFileSync(cssPath, {encoding: "utf-8"});
15 | const benchScript = readFileSync(benchScriptPath, {encoding: "utf-8"});
16 |
17 | /**
18 | * Runs the benchmarking through a CDP connection specific to the target execution context.
19 | * @param {CDP.Client} client
20 | */
21 | async function runBenchmark(client) {
22 | const {Runtime} = client;
23 |
24 | // Load benchmarking functions & disable optimization for them
25 | await Runtime.evaluate({
26 | returnByValue: false,
27 | expression: benchScript + `;
28 | %NeverOptimizeFunction($benchmarkSelector);
29 | %NeverOptimizeFunction($benchmarkSelectors);
30 | %DeoptimizeFunction($benchmarkSelector);
31 | %DeoptimizeFunction($benchmarkSelectors);
32 | `,
33 | });
34 |
35 | // Run benchmarking for our built css
36 | /** @type EvaluateResponse */
37 | const result = await Runtime.evaluate({
38 | expression: `$benchmarkSelectors(\`${css}\`)`,
39 | });
40 |
41 | /** @type string */
42 | const csv = result.result.value;
43 |
44 | // Dump csv to file
45 | writeFileSync(outCsvPath, csv);
46 |
47 | // Parse CSV results
48 | const lines = parse(csv, {
49 | skipEmptyLines: true,
50 | });
51 |
52 | const maxSelectorLength = Math.max(...lines.map(([selector]) => selector.length));
53 | const terminalWidth = process.stdout.columns || Number.MAX_SAFE_INTEGER;
54 | const selectorsColWidth = clamp(
55 | maxSelectorLength,
56 | 80,
57 | terminalWidth - 11 - 9 - 4,
58 | );
59 |
60 | // Make a table from the csv
61 | const table = new Table({
62 | head: lines.shift(),
63 | colWidths: [selectorsColWidth, 11, 9],
64 | });
65 | table.push(...lines);
66 |
67 | console.log();
68 | console.log(table.toString());
69 |
70 | const totalTime = lines
71 | .reduce((acc, [, time,]) => acc + parseFloat(time), 0)
72 | .toFixed(4);
73 |
74 | console.log();
75 | console.log(`Total time of all selectors: ${totalTime}ms`);
76 | }
77 |
78 | async function run() {
79 | /** @type CDP.Client */
80 | let client;
81 |
82 | try {
83 | console.log();
84 | console.log(dateHeader() + " Finding debugging targets...");
85 | const targets = await CDP.List({port: 9222})
86 | const target = targets.find(t =>
87 | t.type === "page" && t.url !== t.title && t.url.startsWith("https://discord.com/"))
88 |
89 | if (!target) {
90 | console.log(dateHeader() + chalk.yellow(" Failed to find Discord page target! " +
91 | "Was Discord launched via the " +
92 | chalk.bold(chalk.underline("pnpm launchDiscord")) +
93 | " command?"));
94 | return;
95 | }
96 | console.log(dateHeader() +
97 | chalk.green(" Found debugging url: ") +
98 | chalk.dim(chalk.gray(target.webSocketDebuggerUrl)) +
99 | ", title: " +
100 | chalk.dim(chalk.gray(target.title)));
101 |
102 | // Connect to the chrome debugging interface
103 | console.log(dateHeader() + " Connecting to the debugger interface...");
104 | client = await CDP({target: target.webSocketDebuggerUrl});
105 | console.log(dateHeader() + chalk.green(" Connected!"));
106 |
107 | console.log(dateHeader() + " Running benchmark...");
108 | await runBenchmark(client);
109 |
110 | console.log();
111 | console.log(dateHeader() + chalk.green(" Finished benchmark! Wrote to " +
112 | chalk.bold(chalk.underline("benchmark.csv"))));
113 | console.log(dateHeader() + chalk.yellow(" Note that these benchmark results are " +
114 | "specific to the current screen opened in Discord!"));
115 | console.log(dateHeader() + chalk.yellow(" Changes to the current layout " +
116 | "will produce different results."));
117 | } catch (err) {
118 | console.error(err);
119 | console.log();
120 |
121 | // CDP connection error
122 | if (err.message.includes("ECONNREFUSED")) {
123 | console.log(dateHeader() + chalk.yellow(" Failed to connect to the debugging " +
124 | "port! Was Discord launched via the " +
125 | chalk.bold(chalk.underline("pnpm launchDiscord")) +
126 | " command?"));
127 | }
128 |
129 | console.log(dateHeader() + chalk.red(" Failed to run benchmark!"));
130 | } finally {
131 | await client?.close();
132 | }
133 | }
134 |
135 | run().then(_ => _);
136 |
--------------------------------------------------------------------------------
/src/vars.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Overriding global Discord variables.
3 | */
4 |
5 | /****** Fonts ******/
6 |
7 | :root {
8 | // Not replacing default fonts with Whitney is intentional,
9 | // I think gg sans is easier on the eyes.
10 |
11 | --font-code: "Jetbrains Mono", "Source Code Pro", consolas, "Andale Mono WT", "Andale Mono",
12 | "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono",
13 | "Liberation Mono", "Nimbus Mono L", monaco, "Courier New", courier, monospace;
14 | }
15 |
16 | h3[class*="text-sm/medium"],
17 | div[class*="text-sm/medium"],
18 | {
19 | font-weight: 600 !important;
20 | }
21 |
22 | /****** Sizing ******/
23 |
24 | :root {
25 | --radius-none: 0px;
26 | --radius-xxs: 2px;
27 | --radius-xs: 4px;
28 | --radius-sm: var(--radius-xs); // Less rounding
29 | --radius-md: 12px;
30 | --radius-lg: 16px;
31 | --radius-xl: 24px;
32 | --radius-xxl: 32;
33 | --spacing-4: 4px;
34 | --spacing-8: 8px;
35 | --spacing-12: 12px;
36 | --spacing-16: 16px;
37 | }
38 |
39 | /****** Colors ******/
40 |
41 | body,
42 | .visual-refresh .theme-dark,
43 | .visual-refresh.theme-dark,
44 | .visual-refresh.theme-darker,
45 | .visual-refresh.theme-midnight,
46 | .theme-dark.theme-darker,
47 | {
48 | // Theme color palette
49 | --dracula-primary: #282a36;
50 | --dracula-secondary: #242631;
51 | --dracula-secondary-alpha: rgb(36 38 49 / 90%);
52 | --dracula-tertiary: #20222c;
53 | --dracula-tertiary-alpha: rgb(32 34 44 / 60%);
54 | --dracula-primary-light: #44475a;
55 | --dracula-accent: #bd93f9;
56 | --dracula-accent-alpha-5: rgb(189 147 249 / 5%);
57 | --dracula-accent-alpha-10: rgb(189 147 249 / 10%);
58 | --dracula-accent-alpha-15: rgb(189 147 249 / 15%);
59 | --dracula-accent-alpha-20: rgb(189 147 249 / 20%);
60 | --dracula-accent-alpha-50: rgb(189 147 249 / 35%);
61 | --dracula-accent-alpha-75: rgb(189 147 249 / 50%);
62 | --dracula-accent-alpha-85: rgb(189 147 249 / 85%);
63 | --dracula-accent-alpha-90: rgb(189 147 249 / 90%);
64 | --dracula-accent-dark: #7b49c0;
65 | --dracula-accent-light: #d4b5ff;
66 |
67 | // BetterDiscord
68 | --bd-blue: var(--dracula-accent);
69 | --bd-blue-hover: var(--dracula-accent-light);
70 | --bd-blue-active: var(--dracula-accent-light);
71 | --blurple: var(--dracula-accent);
72 | --background-primary: var(--dracula-primary);
73 | --background-secondary: var(--dracula-secondary);
74 | --background-secondary-alt: var(--dracula-secondary);
75 | --background-tertiary: var(--dracula-tertiary);
76 | --background-floating: var(--dracula-secondary);
77 | --background-nested-floating: var(--dracula-tertiary);
78 | --background-accent: var(--dracula-accent);
79 | --bg-base-primary: var(--dracula-primary);
80 | --bg-base-secondary: var(--dracula-secondary);
81 | --bg-base-tertiary: var(--dracula-secondary);
82 | --bg-surface-overlay: var(--dracula-primary);
83 | --bg-surface-raised: var(--dracula-primary);
84 | --background-base-low: var(--dracula-primary);
85 | --background-base-lower: var(--dracula-primary);
86 | --background-base-lowest: var(--dracula-secondary);
87 | --background-surface-high: var(--dracula-secondary);
88 | --background-surface-higher: var(--dracula-primary);
89 | --background-surface-highest: var(--dracula-tertiary);
90 | --chat-background-default: var(--dracula-secondary);
91 | --custom-channel-members-bg: var(--dracula-secondary);
92 | --background-mod-subtle: var(--dracula-tertiary);
93 | --bg-mod-subtle: var(--dracula-secondary);
94 | --modal-background: var(--dracula-tertiary);
95 | --message-reacted-background: var(--dracula-accent-alpha-20);
96 | --background-code: var(--dracula-tertiary);
97 | --background-mentioned: var(--dracula-accent-alpha-10);
98 | --background-mentioned-hover: var(--dracula-accent-alpha-20);
99 | --background-message-highlight: var(--dracula-accent-alpha-15);
100 | --background-message-hover: var(--dracula-accent-alpha-5);
101 | --autocomplete-bg: var(--dracula-secondary);
102 | --user-profile-overlay-background: var(--dracula-primary);
103 | --card-primary-bg: var(--dracula-secondary);
104 | --modal-footer-background: var(--dracula-tertiary);
105 | --button-filled-brand-background: var(--dracula-accent-alpha-85);
106 | --button-filled-brand-background-hover: var(--dracula-accent);
107 | --checkbox-background-default: var(--dracula-secondary);
108 |
109 | // Messages
110 | --background-modifier-selected: var(--dracula-accent-alpha-20);
111 | --info-warning-foreground: var(--dracula-accent); // mentioned message left border
112 | --text-link: var(--dracula-accent);
113 | --interactive-active: hsl(from var(--interactive-normal) h s calc(l + 10));
114 | --interactive-hover: hsl(from var(--interactive-normal) h s calc(l + 20));
115 | --mention-foreground: var(--dracula-accent);
116 |
117 | //--mention-background: var(--dracula-accent-alpha-90); // The default looks good
118 |
119 | // Borders
120 | --border-normal: transparent;
121 | --border-faint: transparent;
122 | --border-subtle: none;
123 | --input-border: none;
124 | --app-border-frame: none;
125 | --checkbox-border-default: var(--white-830);
126 |
127 | // Text
128 | --text-brand: var(--dracula-accent-alpha-85);
129 | --text-normal: var(--white-560); // Normal is --white-530, makes all text a bit more dim
130 | --header-primary: var(--white-530);
131 |
132 | // Discord Brand variables
133 | --bg-brand: var(--dracula-accent);
134 | --brand-360: var(--dracula-accent);
135 | --brand-500: var(--dracula-accent);
136 | --brand-560: var(--dracula-accent-alpha-90);
137 | --blurple-50: var(--dracula-accent-alpha-90);
138 | }
139 |
140 | // Text selection
141 | *::selection {
142 | background-color: var(--dracula-accent-alpha-20);
143 | }
144 |
--------------------------------------------------------------------------------
/src/old_guilds.scss:
--------------------------------------------------------------------------------
1 | // Reverts changes to guilds list by the Visual Refresh
2 | // Based on https://github.com/scattagain/VencordStuff/blob/main/css/GuildbarRevert.css
3 |
4 | :root {
5 | --guildbar-avatar-size: 48px;
6 | --blob-scale: 48;
7 | --guildbar-folder-size: var(--guildbar-avatar-size);
8 | --folder-blob-scale: var(--blob-scale);
9 | --custom-guild-list-padding: 12px;
10 | --custom-guild-list-width: calc(max(var(--guildbar-avatar-size), var(--guildbar-folder-size)) + var(--custom-guild-list-padding) * 2);
11 | }
12 |
13 | nav[class*="guilds_"] {
14 | defs > path {
15 | /* #svg-mask-squircle */
16 | d: path("M0 0.464C0 0.301585 0 0.220377 0.0316081 0.158343C0.0594114 0.103776 0.103776 0.0594114 0.158343 0.0316081C0.220377 0 0.301585 0 0.464 0H0.536C0.698415 0 0.779623 0 0.841657 0.0316081C0.896224 0.0594114 0.940589 0.103776 0.968392 0.158343C1 0.220377 1 0.301585 1 0.464V0.536C1 0.698415 1 0.779623 0.968392 0.841657C0.940589 0.896224 0.896224 0.940589 0.841657 0.968392C0.779623 1 0.698415 1 0.536 1H0.464C0.301585 1 0.220377 1 0.158343 0.968392C0.103776 0.940589 0.0594114 0.896224 0.0316081 0.841657C0 0.779623 0 0.698415 0 0.536V0.464Z");
17 | }
18 |
19 | defs,
20 | div[class^="blobContainer_"],
21 | div[class^="listItemWrapper__"],
22 | div[class*="wrapper_"]:not([class*="listItem__"] > [class*="wrapper_"]),
23 | div[class^="dragInner__"], // Placeholder background while dragging guild items
24 | svg[class*="placeholderMask__"],
25 | svg:not([class*="placeholderMask__"]) > foreignObject,
26 | {
27 | width: var(--guildbar-avatar-size) !important;
28 | height: var(--guildbar-avatar-size) !important;
29 | }
30 |
31 | // Top Discord button
32 | div[data-list-item-id="guildsnav___home"] > div > svg {
33 | width: calc(var(--guildbar-avatar-size) - 18px);
34 | height: calc(var(--guildbar-avatar-size) - 18px);
35 | }
36 |
37 | // Round all items
38 | div[class^="childWrapper__"],
39 | div[class^="childWrapper__"] img,
40 | img[class^="icon_"],
41 | div[class^="circleIconButton__"],
42 | {
43 | border-radius: 50% !important;
44 | transition: border-radius 150ms linear;
45 | }
46 |
47 | // Un-round items when selected
48 | div[draggable][class*="selected__"] {
49 | div[class^="childWrapper__"],
50 | div[class^="childWrapper__"] img,
51 | img[class^="icon_"],
52 | &[class^="circleIconButton__"],
53 | {
54 | border-radius: 27% !important;
55 | }
56 | }
57 |
58 | svg[class*="shiftSVG_"] {
59 | top: 0;
60 | left: 0;
61 |
62 | foreignObject {
63 | transform: translate(-4px, -4px);
64 | }
65 | }
66 |
67 | // Guild/Avatar mask for unread badge
68 | mask {
69 | --badge-offset: calc(var(--guildbar-avatar-size) - 40px);
70 |
71 | & > use[href$="-lower_badge_masks"] {
72 | translate: var(--badge-offset) var(--badge-offset);
73 | }
74 |
75 | & > use[href$="-upper_badge_masks"] {
76 | translate: var(--badge-offset);
77 | }
78 |
79 | & > use[href$="-blob_mask"] {
80 | scale: var(--blob-scale);
81 | }
82 | }
83 |
84 | div[class^="listItem__"] {
85 | margin-bottom: 8px;
86 | height: min-content;
87 | }
88 |
89 | // Main guilds list and DMs list
90 | div[class^="stack_"] {
91 | gap: 0 !important;
92 |
93 | // Expanded folder items container
94 | div[data-drop-hovering][class*="isExpanded__"] {
95 | margin-bottom: 8px;
96 |
97 | // Folder items background track
98 | span[class^="folderGroupBackground__"] {
99 | border-bottom-left-radius: 24px;
100 | border-bottom-right-radius: 24px;
101 | border: none;
102 | background-color: var(--dracula-tertiary);
103 | }
104 |
105 | // Folder items
106 | & > ul[class^="stack_"] {
107 | height: auto !important;
108 |
109 | // Last folder group item
110 | & > :last-child {
111 | margin-bottom: 0;
112 | }
113 | }
114 |
115 | & > [class*="listItem__"] {
116 | margin-bottom: 0;
117 | }
118 | }
119 | }
120 |
121 | // Pending clan applications folder icon
122 | div[class^="pendingFolderButtonIcon_"] {
123 | color: var(--dracula-accent);
124 |
125 | & > svg { // stylelint-disable-line no-descending-specificity
126 | width: 24px !important;
127 | height: 24px !important;
128 | }
129 | }
130 |
131 | // Folder icons
132 | div[class^="folderButtonContent_"] {
133 | & > div > div[class^="folderIcon__"] {
134 | background-color: var(--dracula-tertiary);
135 |
136 | & > svg {
137 | width: 24px !important;
138 | height: 24px !important;
139 | }
140 | }
141 |
142 | & > div[class^="folderPreviewWrapper__"] {
143 | display: flex;
144 | justify-content: center;
145 | align-items: center;
146 | background-color: var(--dracula-tertiary);
147 |
148 | & > div[class^="folderPreview__"] {
149 | width: calc(var(--guildbar-folder-size) * (2 / 3) + var(--custom-folder-preview-gap));
150 | height: calc(var(--guildbar-folder-size) * (2 / 3) + var(--custom-folder-preview-gap));
151 |
152 | // Collapsed server icons (without PlainFolderIcons plugin)
153 | & > div[class*="iconSizeMini_"] {
154 | width: calc(var(--guildbar-folder-size) / 3);
155 | height: calc(var(--guildbar-folder-size) / 3);
156 | border-radius: 50%;
157 |
158 | &[style^="font-size: 12px;"] {
159 | font-size: 10px !important;
160 | }
161 |
162 | &[style^="font-size: 10px;"] {
163 | font-size: 7px !important;
164 | }
165 |
166 | &[style^="font-size: 8px;"] {
167 | font-size: 6px !important;
168 | }
169 |
170 | & > div[class^="acronym_"] {
171 | line-height: calc(var(--guildbar-folder-size) / 3);
172 | }
173 | }
174 | }
175 | }
176 | }
177 | }
178 |
179 | // Unread DM items
180 | #guild-list-unread-dms > div {
181 | height: var(--guildbar-avatar-size) !important;
182 | margin: 6px 0;
183 | }
184 |
--------------------------------------------------------------------------------
/src/chat.scss:
--------------------------------------------------------------------------------
1 | /****** Chat Layout ******/
2 |
3 | // Chat content parent
4 | div[data-has-border][class^="chat_"] {
5 | background-color: var(--dracula-secondary);
6 | }
7 |
8 | // Rounding & shadow around chat area
9 | main[class^="chatContent_"] {
10 | border-top-left-radius: var(--radius-md);
11 | border-top-right-radius: var(--radius-md);
12 | box-shadow: 0 0 6px 3px rgb(0 0 0 / 15%) inset;
13 |
14 | & > div[class^="messagesWrapper_"] {
15 | // Fix chat padding because of new chat input padding
16 | margin-bottom: 4px;
17 |
18 | & > div[class^="scroller_"] {
19 | border-top-left-radius: var(--radius-md);
20 | border-top-right-radius: var(--radius-md);
21 | }
22 |
23 | // Make chat scrollbar like the others
24 | & > div[class^="scroller_"]::-webkit-scrollbar {
25 | width: 12px;
26 | }
27 |
28 | & > div[class^="jumpToPresentBar_"] {
29 | // Extra padding to account for custom typing users bar
30 | bottom: 20px;
31 |
32 | // Nicer "You are viewing older messages" bar
33 | background-color: var(--dracula-tertiary) !important;
34 | box-shadow: 0 2px 12px var(--opacity-black-56) !important;
35 | }
36 | }
37 | }
38 |
39 | /****** Top Unread Messages Bar ******/
40 |
41 | @keyframes unread-messages-bar-enter {
42 | 0% {
43 | top: -3em;
44 | }
45 |
46 | 100% {
47 | top: 0;
48 | }
49 | }
50 |
51 | // Nicer unread messages bar
52 | div[class^="newMessagesBar"] {
53 | margin-top: 0.5em;
54 | height: 2em;
55 | border-radius: 0.5em;
56 | min-width: 70%;
57 | justify-self: center;
58 | background-color: var(--dracula-accent-alpha-90);
59 | box-shadow: 0 2px 12px var(--opacity-black-56);
60 |
61 | .full-motion & {
62 | animation-name: unread-messages-bar-enter;
63 | animation-duration: 150ms;
64 | animation-fill-mode: backwards;
65 | }
66 | }
67 |
68 |
69 | /****** Chat Input Typing Users ******/
70 |
71 | @keyframes typing-bar-enter {
72 | 0% {
73 | top: 0;
74 | }
75 |
76 | 100% {
77 | top: -20px;
78 | }
79 | }
80 |
81 | // Chat bar overlay the typing bar
82 | div[class^="channelTextArea_"] {
83 | z-index: 1;
84 | border: none;
85 | }
86 |
87 | // Align typing users bar above chat bar
88 | form[class*="formWithLoadedChatInput_"] > div[class^="typing_"] {
89 | top: -22px; // Move above chat bar
90 | z-index: 0; // Under the chat bar
91 | margin-left: 26px;
92 | margin-right: 30px; // Because of text field rounding
93 | height: min-content;
94 | border-radius: var(--radius-sm) var(--radius-sm) 0 0;
95 | background-color: var(--dracula-secondary);
96 | padding: 4px 8px;
97 | transition: none;
98 | box-shadow: 0 -2px 6px var(--opacity-black-16);
99 |
100 | .full-motion & {
101 | animation-name: typing-bar-enter;
102 | animation-duration: 150ms;
103 | animation-fill-mode: backwards;
104 | }
105 | }
106 |
107 | // Fix end of chat list padding to make room for typing users
108 | div[class^="scrollerSpacer_"] {
109 | height: 30px !important;
110 | }
111 |
112 |
113 | /****** Chat Input ******/
114 |
115 | // Nicer chat bar
116 | div[class^="channelBottomBarArea_"] > div[class^="channelTextArea_"] {
117 | margin-left: var(--spacing-16);
118 | margin-right: var(--spacing-16);
119 | margin-bottom: var(--spacing-12);
120 |
121 | // Round the text field
122 | border-radius: 50px;
123 | background-color: var(--dracula-primary) !important;
124 |
125 | // Un-round the text field when replying
126 | &:has(> div[class^="stackedBars_"]) {
127 | border-radius: 0 0 8px 8px;
128 | }
129 |
130 | // Un-round when have file attachment
131 | &:has(> div > ul[data-list-id="attachments"]) {
132 | border-radius: 8px;
133 | }
134 |
135 | // Un-round the text field when multi-line chat input
136 | &:has(> div[class^="scrollableContainer_"] > div > div[class^="textArea_"]:not([style="height: 50px;"])) {
137 | border-radius: 8px;
138 | }
139 |
140 | // Round the text field
141 | & > div[class^="scrollableContainer_"] {
142 | border-radius: inherit;
143 | }
144 |
145 | // Smaller buttons padding
146 | div[class^="buttons_"] {
147 | gap: 2px !important;
148 | }
149 |
150 | div[class*="buttonContainer_"] {
151 | opacity: 0.7;
152 |
153 | &:hover {
154 | opacity: 1;
155 | }
156 | }
157 |
158 | // Reply bar
159 | & > div[class^="stackedBars_"] {
160 | border: none !important;
161 |
162 | // Remove extra padding when replying + typing users
163 | & div[class^="clipContainer_"] {
164 | padding-top: 0;
165 | }
166 | }
167 |
168 | // Move character count inwards to account for rounding
169 | div[class^="characterCount_"] {
170 | bottom: 24px;
171 | right: 28px;
172 | }
173 |
174 | div[class^="inner_"] {
175 | --custom-channel-textarea-text-area-max-height: 50px;
176 | --custom-channel-textarea-text-area-height: var(--custom-channel-textarea-text-area-max-height);
177 | }
178 |
179 | // Remove nitro upsell
180 | div[class*="upsell_"] {
181 | display: none;
182 | }
183 |
184 | div[class^="replyBar_"] {
185 | background-color: var(--dracula-tertiary);
186 | padding-right: 3px; // Align cancel button with chat action buttons
187 | }
188 |
189 | // Attachments list
190 | ul[data-list-id="attachments"] {
191 | background-color: unset;
192 | }
193 | }
194 |
195 | // Fix scroll color of chat input
196 | div[class^="channelTextArea_"] > div[class^="scrollableContainer_"]::-webkit-scrollbar-thumb {
197 | background-color: hsl(var(--primary-400-hsl) / 60%);
198 | }
199 |
200 | // Fix padding between buttons and edit text on existing messages
201 | div:not([class]) > div[class^="channelTextArea_"] > div[class^="scrollableContainer_"] > div[class^="inner_"] {
202 | gap: 10px;
203 | }
204 |
205 |
206 | /****** Chat Items ******/
207 |
208 | // Better reactions container
209 | div[class*="reactionMe_"] {
210 | border: 0.075rem solid transparent;
211 | }
212 |
213 | // Theme unread messages divider
214 | div[class^="divider_"] {
215 | --divider-color: var(--dracula-accent);
216 |
217 | border-top: thin solid var(--divider-color);
218 |
219 | & > span {
220 | color: var(--white-530);
221 | }
222 | }
223 |
224 | // Embeds
225 | article[class^="embedWrapper_"] {
226 | padding-left: var(--spacing-8);
227 | padding-top: var(--spacing-4);
228 | border-top: none !important;
229 | border-bottom: none !important;
230 | border-right: none !important;
231 | }
232 |
233 | // Slightly better padding between message header and content
234 | h3[aria-labelledby^="message-username-"] {
235 | padding-bottom: 0.0625rem;
236 | }
237 |
238 | div[id^="message-accessories-"] {
239 | // Border fix for text file previews
240 | --border-subtle: transparent;
241 |
242 | // Less rounding on message media
243 | div[class^="visualMediaItemContainer_"],
244 | div[class^="visualMediaItemContainer_"] > div,
245 | div[class*="mosaicItemMediaMosaic_"],
246 | div[class*="mosaicItemContent_"],
247 | div[class*="wrapperMediaMosaic_"],
248 | div[class*="spoilerContainer_"],
249 | video,
250 | {
251 | border-radius: var(--radius-xs);
252 | }
253 | }
254 |
255 | // Bot tag on messages
256 | span[class*="botTagRegular_"] {
257 | background-color: var(--bg-mod-strong);
258 | padding: 0.05rem 0.28rem !important;
259 | margin-left: 0.5rem;
260 | }
261 |
262 | // File upload message item
263 | div[class^="file_"] {
264 | border: none;
265 | }
266 |
267 | // Audio message items
268 | div[class^="wrapperAudio_"] {
269 | border: none;
270 | background-color: var(--dracula-secondary);
271 | }
272 |
273 |
274 | /****** Autocomplete ******/
275 |
276 | // Autocomplete popup
277 | div[class^="autocomplete_"] {
278 | padding-top: 2px;
279 | padding-left: 8px;
280 | box-shadow: var(--shadow-medium);
281 | }
282 |
283 |
284 | /****** Search Sidebar ******/
285 |
286 | // Larger search sidebar
287 | section[class^="searchResultsWrap_"] {
288 | width: 550px;
289 | }
290 |
291 | div[class^="searchResult_"] {
292 | border: none !important;
293 | padding: 6px 2px;
294 | }
295 |
296 | div[class^="channelNameContainer_"] {
297 | margin-left: 8px;
298 | }
299 |
300 |
301 | /****** Reaction Picker ******/
302 |
303 | #emoji-picker-tab-panel {
304 | // Fix background colors
305 | & > div[class*="categoryList_"], div[class^="inspector_"] {
306 | background-color: var(--dracula-secondary);
307 | }
308 |
309 | #emoji-picker-grid, #emoji-picker-grid div[class*="header_"] {
310 | background-color: var(--dracula-primary);
311 | }
312 |
313 | #emoji-picker-grid {
314 | border-top-left-radius: var(--radius-md);
315 | border-bottom-left-radius: var(--radius-md);
316 | }
317 |
318 | & > div[class^="emojiPicker_"] > div[class^="header_"] {
319 | padding: 0 10px 12px 16px;
320 | border: none;
321 | }
322 |
323 | // Remove "Popular"/"Newly Added" emoji badge
324 | div[class*="badgeLabel_"] {
325 | display: none;
326 | }
327 |
328 | // Remove newly added container around emojis in picker
329 | div[class^="newlyAddedHighlight_"] {
330 | border: none;
331 | }
332 |
333 | div[class^="newlyAddedBadge_"] {
334 | display: none;
335 | }
336 | }
337 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | devDependencies:
11 | '@types/chrome-remote-interface':
12 | specifier: ^0.31.14
13 | version: 0.31.14
14 | '@types/node':
15 | specifier: ^22.15.30
16 | version: 22.15.30
17 | chalk:
18 | specifier: ^5.4.1
19 | version: 5.4.1
20 | chokidar:
21 | specifier: ^4.0.3
22 | version: 4.0.3
23 | chrome-remote-interface:
24 | specifier: ^0.33.3
25 | version: 0.33.3
26 | cli-table3:
27 | specifier: ^0.6.5
28 | version: 0.6.5
29 | csv-parse:
30 | specifier: ^5.6.0
31 | version: 5.6.0
32 | dotenv:
33 | specifier: ^16.5.0
34 | version: 16.5.0
35 | sass:
36 | specifier: ^1.89.1
37 | version: 1.89.1
38 | stylelint:
39 | specifier: ^16.20.0
40 | version: 16.20.0
41 | stylelint-config-standard-scss:
42 | specifier: ^15.0.1
43 | version: 15.0.1(postcss@8.5.4)(stylelint@16.20.0)
44 |
45 | packages:
46 |
47 | '@babel/code-frame@7.27.1':
48 | resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
49 | engines: {node: '>=6.9.0'}
50 |
51 | '@babel/helper-validator-identifier@7.27.1':
52 | resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
53 | engines: {node: '>=6.9.0'}
54 |
55 | '@colors/colors@1.5.0':
56 | resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
57 | engines: {node: '>=0.1.90'}
58 |
59 | '@csstools/css-parser-algorithms@3.0.5':
60 | resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
61 | engines: {node: '>=18'}
62 | peerDependencies:
63 | '@csstools/css-tokenizer': ^3.0.4
64 |
65 | '@csstools/css-tokenizer@3.0.4':
66 | resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
67 | engines: {node: '>=18'}
68 |
69 | '@csstools/media-query-list-parser@4.0.3':
70 | resolution: {integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==}
71 | engines: {node: '>=18'}
72 | peerDependencies:
73 | '@csstools/css-parser-algorithms': ^3.0.5
74 | '@csstools/css-tokenizer': ^3.0.4
75 |
76 | '@csstools/selector-specificity@5.0.0':
77 | resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
78 | engines: {node: '>=18'}
79 | peerDependencies:
80 | postcss-selector-parser: ^7.0.0
81 |
82 | '@dual-bundle/import-meta-resolve@4.1.0':
83 | resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
84 |
85 | '@keyv/serialize@1.0.3':
86 | resolution: {integrity: sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==}
87 |
88 | '@nodelib/fs.scandir@2.1.5':
89 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
90 | engines: {node: '>= 8'}
91 |
92 | '@nodelib/fs.stat@2.0.5':
93 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
94 | engines: {node: '>= 8'}
95 |
96 | '@nodelib/fs.walk@1.2.8':
97 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
98 | engines: {node: '>= 8'}
99 |
100 | '@parcel/watcher-android-arm64@2.5.1':
101 | resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
102 | engines: {node: '>= 10.0.0'}
103 | cpu: [arm64]
104 | os: [android]
105 |
106 | '@parcel/watcher-darwin-arm64@2.5.1':
107 | resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
108 | engines: {node: '>= 10.0.0'}
109 | cpu: [arm64]
110 | os: [darwin]
111 |
112 | '@parcel/watcher-darwin-x64@2.5.1':
113 | resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
114 | engines: {node: '>= 10.0.0'}
115 | cpu: [x64]
116 | os: [darwin]
117 |
118 | '@parcel/watcher-freebsd-x64@2.5.1':
119 | resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
120 | engines: {node: '>= 10.0.0'}
121 | cpu: [x64]
122 | os: [freebsd]
123 |
124 | '@parcel/watcher-linux-arm-glibc@2.5.1':
125 | resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
126 | engines: {node: '>= 10.0.0'}
127 | cpu: [arm]
128 | os: [linux]
129 |
130 | '@parcel/watcher-linux-arm-musl@2.5.1':
131 | resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
132 | engines: {node: '>= 10.0.0'}
133 | cpu: [arm]
134 | os: [linux]
135 |
136 | '@parcel/watcher-linux-arm64-glibc@2.5.1':
137 | resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
138 | engines: {node: '>= 10.0.0'}
139 | cpu: [arm64]
140 | os: [linux]
141 |
142 | '@parcel/watcher-linux-arm64-musl@2.5.1':
143 | resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
144 | engines: {node: '>= 10.0.0'}
145 | cpu: [arm64]
146 | os: [linux]
147 |
148 | '@parcel/watcher-linux-x64-glibc@2.5.1':
149 | resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
150 | engines: {node: '>= 10.0.0'}
151 | cpu: [x64]
152 | os: [linux]
153 |
154 | '@parcel/watcher-linux-x64-musl@2.5.1':
155 | resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
156 | engines: {node: '>= 10.0.0'}
157 | cpu: [x64]
158 | os: [linux]
159 |
160 | '@parcel/watcher-win32-arm64@2.5.1':
161 | resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
162 | engines: {node: '>= 10.0.0'}
163 | cpu: [arm64]
164 | os: [win32]
165 |
166 | '@parcel/watcher-win32-ia32@2.5.1':
167 | resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
168 | engines: {node: '>= 10.0.0'}
169 | cpu: [ia32]
170 | os: [win32]
171 |
172 | '@parcel/watcher-win32-x64@2.5.1':
173 | resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
174 | engines: {node: '>= 10.0.0'}
175 | cpu: [x64]
176 | os: [win32]
177 |
178 | '@parcel/watcher@2.5.1':
179 | resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
180 | engines: {node: '>= 10.0.0'}
181 |
182 | '@types/chrome-remote-interface@0.31.14':
183 | resolution: {integrity: sha512-H9hTcLu1y+Ms6GDPXXeGhgxaOSD69yEo674vjJw5EeW1tTwYo8fEkf7A9nWlnO6ArJsS7c41iZeX6mRDQ1LhEw==}
184 |
185 | '@types/node@22.15.30':
186 | resolution: {integrity: sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA==}
187 |
188 | ajv@8.17.1:
189 | resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
190 |
191 | ansi-regex@5.0.1:
192 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
193 | engines: {node: '>=8'}
194 |
195 | ansi-styles@4.3.0:
196 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
197 | engines: {node: '>=8'}
198 |
199 | argparse@2.0.1:
200 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
201 |
202 | array-union@2.1.0:
203 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
204 | engines: {node: '>=8'}
205 |
206 | astral-regex@2.0.0:
207 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
208 | engines: {node: '>=8'}
209 |
210 | balanced-match@2.0.0:
211 | resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
212 |
213 | base64-js@1.5.1:
214 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
215 |
216 | braces@3.0.3:
217 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
218 | engines: {node: '>=8'}
219 |
220 | buffer@6.0.3:
221 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
222 |
223 | cacheable@1.10.0:
224 | resolution: {integrity: sha512-SSgQTAnhd7WlJXnGlIi4jJJOiHzgnM5wRMEPaXAU4kECTAMpBoYKoZ9i5zHmclIEZbxcu3j7yY/CF8DTmwIsHg==}
225 |
226 | callsites@3.1.0:
227 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
228 | engines: {node: '>=6'}
229 |
230 | chalk@5.4.1:
231 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
232 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
233 |
234 | chokidar@4.0.3:
235 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
236 | engines: {node: '>= 14.16.0'}
237 |
238 | chrome-remote-interface@0.33.3:
239 | resolution: {integrity: sha512-zNnn0prUL86Teru6UCAZ1yU1XeXljHl3gj7OrfPcarEfU62OUU4IujDPdTDW3dAWwRqN3ZMG/Chhkh2gPL/wiw==}
240 | hasBin: true
241 |
242 | cli-table3@0.6.5:
243 | resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
244 | engines: {node: 10.* || >= 12.*}
245 |
246 | color-convert@2.0.1:
247 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
248 | engines: {node: '>=7.0.0'}
249 |
250 | color-name@1.1.4:
251 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
252 |
253 | colord@2.9.3:
254 | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
255 |
256 | commander@2.11.0:
257 | resolution: {integrity: sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==}
258 |
259 | cosmiconfig@9.0.0:
260 | resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
261 | engines: {node: '>=14'}
262 | peerDependencies:
263 | typescript: '>=4.9.5'
264 | peerDependenciesMeta:
265 | typescript:
266 | optional: true
267 |
268 | css-functions-list@3.2.3:
269 | resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
270 | engines: {node: '>=12 || >=16'}
271 |
272 | css-tree@3.1.0:
273 | resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
274 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
275 |
276 | cssesc@3.0.0:
277 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
278 | engines: {node: '>=4'}
279 | hasBin: true
280 |
281 | csv-parse@5.6.0:
282 | resolution: {integrity: sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==}
283 |
284 | debug@4.4.1:
285 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
286 | engines: {node: '>=6.0'}
287 | peerDependencies:
288 | supports-color: '*'
289 | peerDependenciesMeta:
290 | supports-color:
291 | optional: true
292 |
293 | detect-libc@1.0.3:
294 | resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
295 | engines: {node: '>=0.10'}
296 | hasBin: true
297 |
298 | devtools-protocol@0.0.927104:
299 | resolution: {integrity: sha512-5jfffjSuTOv0Lz53wTNNTcCUV8rv7d82AhYcapj28bC2B5tDxEZzVb7k51cNxZP2KHw24QE+sW7ZuSeD9NfMpA==}
300 |
301 | dir-glob@3.0.1:
302 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
303 | engines: {node: '>=8'}
304 |
305 | dotenv@16.5.0:
306 | resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==}
307 | engines: {node: '>=12'}
308 |
309 | emoji-regex@8.0.0:
310 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
311 |
312 | env-paths@2.2.1:
313 | resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
314 | engines: {node: '>=6'}
315 |
316 | error-ex@1.3.2:
317 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
318 |
319 | fast-deep-equal@3.1.3:
320 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
321 |
322 | fast-glob@3.3.3:
323 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
324 | engines: {node: '>=8.6.0'}
325 |
326 | fast-uri@3.0.6:
327 | resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
328 |
329 | fastest-levenshtein@1.0.16:
330 | resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
331 | engines: {node: '>= 4.9.1'}
332 |
333 | fastq@1.19.1:
334 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
335 |
336 | file-entry-cache@10.1.1:
337 | resolution: {integrity: sha512-zcmsHjg2B2zjuBgjdnB+9q0+cWcgWfykIcsDkWDB4GTPtl1eXUA+gTI6sO0u01AqK3cliHryTU55/b2Ow1hfZg==}
338 |
339 | fill-range@7.1.1:
340 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
341 | engines: {node: '>=8'}
342 |
343 | flat-cache@6.1.10:
344 | resolution: {integrity: sha512-B6/v1f0NwjxzmeOhzfXPGWpKBVA207LS7lehaVKQnFrVktcFRfkzjZZ2gwj2i1TkEUMQht7ZMJbABUT5N+V1Nw==}
345 |
346 | flatted@3.3.3:
347 | resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
348 |
349 | glob-parent@5.1.2:
350 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
351 | engines: {node: '>= 6'}
352 |
353 | global-modules@2.0.0:
354 | resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
355 | engines: {node: '>=6'}
356 |
357 | global-prefix@3.0.0:
358 | resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
359 | engines: {node: '>=6'}
360 |
361 | globby@11.1.0:
362 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
363 | engines: {node: '>=10'}
364 |
365 | globjoin@0.1.4:
366 | resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
367 |
368 | has-flag@4.0.0:
369 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
370 | engines: {node: '>=8'}
371 |
372 | hookified@1.9.1:
373 | resolution: {integrity: sha512-u3pxtGhKjcSXnGm1CX6aXS9xew535j3lkOCegbA6jdyh0BaAjTbXI4aslKstCr6zUNtoCxFGFKwjbSHdGrMB8g==}
374 |
375 | html-tags@3.3.1:
376 | resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
377 | engines: {node: '>=8'}
378 |
379 | ieee754@1.2.1:
380 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
381 |
382 | ignore@5.3.2:
383 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
384 | engines: {node: '>= 4'}
385 |
386 | ignore@7.0.5:
387 | resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
388 | engines: {node: '>= 4'}
389 |
390 | immutable@5.1.2:
391 | resolution: {integrity: sha512-qHKXW1q6liAk1Oys6umoaZbDRqjcjgSrbnrifHsfsttza7zcvRAsL7mMV6xWcyhwQy7Xj5v4hhbr6b+iDYwlmQ==}
392 |
393 | import-fresh@3.3.1:
394 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
395 | engines: {node: '>=6'}
396 |
397 | imurmurhash@0.1.4:
398 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
399 | engines: {node: '>=0.8.19'}
400 |
401 | ini@1.3.8:
402 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
403 |
404 | is-arrayish@0.2.1:
405 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
406 |
407 | is-extglob@2.1.1:
408 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
409 | engines: {node: '>=0.10.0'}
410 |
411 | is-fullwidth-code-point@3.0.0:
412 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
413 | engines: {node: '>=8'}
414 |
415 | is-glob@4.0.3:
416 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
417 | engines: {node: '>=0.10.0'}
418 |
419 | is-number@7.0.0:
420 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
421 | engines: {node: '>=0.12.0'}
422 |
423 | is-plain-object@5.0.0:
424 | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
425 | engines: {node: '>=0.10.0'}
426 |
427 | isexe@2.0.0:
428 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
429 |
430 | js-tokens@4.0.0:
431 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
432 |
433 | js-yaml@4.1.0:
434 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
435 | hasBin: true
436 |
437 | json-parse-even-better-errors@2.3.1:
438 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
439 |
440 | json-schema-traverse@1.0.0:
441 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
442 |
443 | keyv@5.3.3:
444 | resolution: {integrity: sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ==}
445 |
446 | kind-of@6.0.3:
447 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
448 | engines: {node: '>=0.10.0'}
449 |
450 | known-css-properties@0.36.0:
451 | resolution: {integrity: sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA==}
452 |
453 | lines-and-columns@1.2.4:
454 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
455 |
456 | lodash.truncate@4.4.2:
457 | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
458 |
459 | mathml-tag-names@2.1.3:
460 | resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
461 |
462 | mdn-data@2.12.2:
463 | resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
464 |
465 | mdn-data@2.21.0:
466 | resolution: {integrity: sha512-+ZKPQezM5vYJIkCxaC+4DTnRrVZR1CgsKLu5zsQERQx6Tea8Y+wMx5A24rq8A8NepCeatIQufVAekKNgiBMsGQ==}
467 |
468 | meow@13.2.0:
469 | resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
470 | engines: {node: '>=18'}
471 |
472 | merge2@1.4.1:
473 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
474 | engines: {node: '>= 8'}
475 |
476 | micromatch@4.0.8:
477 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
478 | engines: {node: '>=8.6'}
479 |
480 | ms@2.1.3:
481 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
482 |
483 | nanoid@3.3.11:
484 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
485 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
486 | hasBin: true
487 |
488 | node-addon-api@7.1.1:
489 | resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
490 |
491 | normalize-path@3.0.0:
492 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
493 | engines: {node: '>=0.10.0'}
494 |
495 | parent-module@1.0.1:
496 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
497 | engines: {node: '>=6'}
498 |
499 | parse-json@5.2.0:
500 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
501 | engines: {node: '>=8'}
502 |
503 | path-type@4.0.0:
504 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
505 | engines: {node: '>=8'}
506 |
507 | picocolors@1.1.1:
508 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
509 |
510 | picomatch@2.3.1:
511 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
512 | engines: {node: '>=8.6'}
513 |
514 | postcss-media-query-parser@0.2.3:
515 | resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
516 |
517 | postcss-resolve-nested-selector@0.1.6:
518 | resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
519 |
520 | postcss-safe-parser@7.0.1:
521 | resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
522 | engines: {node: '>=18.0'}
523 | peerDependencies:
524 | postcss: ^8.4.31
525 |
526 | postcss-scss@4.0.9:
527 | resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
528 | engines: {node: '>=12.0'}
529 | peerDependencies:
530 | postcss: ^8.4.29
531 |
532 | postcss-selector-parser@7.1.0:
533 | resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
534 | engines: {node: '>=4'}
535 |
536 | postcss-value-parser@4.2.0:
537 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
538 |
539 | postcss@8.5.4:
540 | resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==}
541 | engines: {node: ^10 || ^12 || >=14}
542 |
543 | queue-microtask@1.2.3:
544 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
545 |
546 | readdirp@4.1.2:
547 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
548 | engines: {node: '>= 14.18.0'}
549 |
550 | require-from-string@2.0.2:
551 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
552 | engines: {node: '>=0.10.0'}
553 |
554 | resolve-from@4.0.0:
555 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
556 | engines: {node: '>=4'}
557 |
558 | resolve-from@5.0.0:
559 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
560 | engines: {node: '>=8'}
561 |
562 | reusify@1.1.0:
563 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
564 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
565 |
566 | run-parallel@1.2.0:
567 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
568 |
569 | sass@1.89.1:
570 | resolution: {integrity: sha512-eMLLkl+qz7tx/0cJ9wI+w09GQ2zodTkcE/aVfywwdlRcI3EO19xGnbmJwg/JMIm+5MxVJ6outddLZ4Von4E++Q==}
571 | engines: {node: '>=14.0.0'}
572 | hasBin: true
573 |
574 | signal-exit@4.1.0:
575 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
576 | engines: {node: '>=14'}
577 |
578 | slash@3.0.0:
579 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
580 | engines: {node: '>=8'}
581 |
582 | slice-ansi@4.0.0:
583 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
584 | engines: {node: '>=10'}
585 |
586 | source-map-js@1.2.1:
587 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
588 | engines: {node: '>=0.10.0'}
589 |
590 | string-width@4.2.3:
591 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
592 | engines: {node: '>=8'}
593 |
594 | strip-ansi@6.0.1:
595 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
596 | engines: {node: '>=8'}
597 |
598 | stylelint-config-recommended-scss@15.0.1:
599 | resolution: {integrity: sha512-V24bxkNkFGggqPVJlP9iXaBabwSGEG7QTz+PyxrRtjPkcF+/NsWtB3tKYvFYEmczRkWiIEfuFMhGpJFj9Fxe6Q==}
600 | engines: {node: '>=20'}
601 | peerDependencies:
602 | postcss: ^8.3.3
603 | stylelint: ^16.16.0
604 | peerDependenciesMeta:
605 | postcss:
606 | optional: true
607 |
608 | stylelint-config-recommended@16.0.0:
609 | resolution: {integrity: sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA==}
610 | engines: {node: '>=18.12.0'}
611 | peerDependencies:
612 | stylelint: ^16.16.0
613 |
614 | stylelint-config-standard-scss@15.0.1:
615 | resolution: {integrity: sha512-8pmmfutrMlPHukLp+Th9asmk21tBXMVGxskZCzkRVWt1d8Z0SrXjUUQ3vn9KcBj1bJRd5msk6yfEFM0UYHBRdg==}
616 | engines: {node: '>=20'}
617 | peerDependencies:
618 | postcss: ^8.3.3
619 | stylelint: ^16.18.0
620 | peerDependenciesMeta:
621 | postcss:
622 | optional: true
623 |
624 | stylelint-config-standard@38.0.0:
625 | resolution: {integrity: sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag==}
626 | engines: {node: '>=18.12.0'}
627 | peerDependencies:
628 | stylelint: ^16.18.0
629 |
630 | stylelint-scss@6.12.0:
631 | resolution: {integrity: sha512-U7CKhi1YNkM1pXUXl/GMUXi8xKdhl4Ayxdyceie1nZ1XNIdaUgMV6OArpooWcDzEggwgYD0HP/xIgVJo9a655w==}
632 | engines: {node: '>=18.12.0'}
633 | peerDependencies:
634 | stylelint: ^16.0.2
635 |
636 | stylelint@16.20.0:
637 | resolution: {integrity: sha512-B5Myu9WRxrgKuLs3YyUXLP2H0mrbejwNxPmyADlACWwFsrL8Bmor/nTSh4OMae5sHjOz6gkSeccQH34gM4/nAw==}
638 | engines: {node: '>=18.12.0'}
639 | hasBin: true
640 |
641 | supports-color@7.2.0:
642 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
643 | engines: {node: '>=8'}
644 |
645 | supports-hyperlinks@3.2.0:
646 | resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
647 | engines: {node: '>=14.18'}
648 |
649 | svg-tags@1.0.0:
650 | resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
651 |
652 | table@6.9.0:
653 | resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
654 | engines: {node: '>=10.0.0'}
655 |
656 | to-regex-range@5.0.1:
657 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
658 | engines: {node: '>=8.0'}
659 |
660 | undici-types@6.21.0:
661 | resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
662 |
663 | util-deprecate@1.0.2:
664 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
665 |
666 | which@1.3.1:
667 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
668 | hasBin: true
669 |
670 | write-file-atomic@5.0.1:
671 | resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
672 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
673 |
674 | ws@7.5.10:
675 | resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
676 | engines: {node: '>=8.3.0'}
677 | peerDependencies:
678 | bufferutil: ^4.0.1
679 | utf-8-validate: ^5.0.2
680 | peerDependenciesMeta:
681 | bufferutil:
682 | optional: true
683 | utf-8-validate:
684 | optional: true
685 |
686 | snapshots:
687 |
688 | '@babel/code-frame@7.27.1':
689 | dependencies:
690 | '@babel/helper-validator-identifier': 7.27.1
691 | js-tokens: 4.0.0
692 | picocolors: 1.1.1
693 |
694 | '@babel/helper-validator-identifier@7.27.1': {}
695 |
696 | '@colors/colors@1.5.0':
697 | optional: true
698 |
699 | '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
700 | dependencies:
701 | '@csstools/css-tokenizer': 3.0.4
702 |
703 | '@csstools/css-tokenizer@3.0.4': {}
704 |
705 | '@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
706 | dependencies:
707 | '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
708 | '@csstools/css-tokenizer': 3.0.4
709 |
710 | '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.0)':
711 | dependencies:
712 | postcss-selector-parser: 7.1.0
713 |
714 | '@dual-bundle/import-meta-resolve@4.1.0': {}
715 |
716 | '@keyv/serialize@1.0.3':
717 | dependencies:
718 | buffer: 6.0.3
719 |
720 | '@nodelib/fs.scandir@2.1.5':
721 | dependencies:
722 | '@nodelib/fs.stat': 2.0.5
723 | run-parallel: 1.2.0
724 |
725 | '@nodelib/fs.stat@2.0.5': {}
726 |
727 | '@nodelib/fs.walk@1.2.8':
728 | dependencies:
729 | '@nodelib/fs.scandir': 2.1.5
730 | fastq: 1.19.1
731 |
732 | '@parcel/watcher-android-arm64@2.5.1':
733 | optional: true
734 |
735 | '@parcel/watcher-darwin-arm64@2.5.1':
736 | optional: true
737 |
738 | '@parcel/watcher-darwin-x64@2.5.1':
739 | optional: true
740 |
741 | '@parcel/watcher-freebsd-x64@2.5.1':
742 | optional: true
743 |
744 | '@parcel/watcher-linux-arm-glibc@2.5.1':
745 | optional: true
746 |
747 | '@parcel/watcher-linux-arm-musl@2.5.1':
748 | optional: true
749 |
750 | '@parcel/watcher-linux-arm64-glibc@2.5.1':
751 | optional: true
752 |
753 | '@parcel/watcher-linux-arm64-musl@2.5.1':
754 | optional: true
755 |
756 | '@parcel/watcher-linux-x64-glibc@2.5.1':
757 | optional: true
758 |
759 | '@parcel/watcher-linux-x64-musl@2.5.1':
760 | optional: true
761 |
762 | '@parcel/watcher-win32-arm64@2.5.1':
763 | optional: true
764 |
765 | '@parcel/watcher-win32-ia32@2.5.1':
766 | optional: true
767 |
768 | '@parcel/watcher-win32-x64@2.5.1':
769 | optional: true
770 |
771 | '@parcel/watcher@2.5.1':
772 | dependencies:
773 | detect-libc: 1.0.3
774 | is-glob: 4.0.3
775 | micromatch: 4.0.8
776 | node-addon-api: 7.1.1
777 | optionalDependencies:
778 | '@parcel/watcher-android-arm64': 2.5.1
779 | '@parcel/watcher-darwin-arm64': 2.5.1
780 | '@parcel/watcher-darwin-x64': 2.5.1
781 | '@parcel/watcher-freebsd-x64': 2.5.1
782 | '@parcel/watcher-linux-arm-glibc': 2.5.1
783 | '@parcel/watcher-linux-arm-musl': 2.5.1
784 | '@parcel/watcher-linux-arm64-glibc': 2.5.1
785 | '@parcel/watcher-linux-arm64-musl': 2.5.1
786 | '@parcel/watcher-linux-x64-glibc': 2.5.1
787 | '@parcel/watcher-linux-x64-musl': 2.5.1
788 | '@parcel/watcher-win32-arm64': 2.5.1
789 | '@parcel/watcher-win32-ia32': 2.5.1
790 | '@parcel/watcher-win32-x64': 2.5.1
791 | optional: true
792 |
793 | '@types/chrome-remote-interface@0.31.14':
794 | dependencies:
795 | devtools-protocol: 0.0.927104
796 |
797 | '@types/node@22.15.30':
798 | dependencies:
799 | undici-types: 6.21.0
800 |
801 | ajv@8.17.1:
802 | dependencies:
803 | fast-deep-equal: 3.1.3
804 | fast-uri: 3.0.6
805 | json-schema-traverse: 1.0.0
806 | require-from-string: 2.0.2
807 |
808 | ansi-regex@5.0.1: {}
809 |
810 | ansi-styles@4.3.0:
811 | dependencies:
812 | color-convert: 2.0.1
813 |
814 | argparse@2.0.1: {}
815 |
816 | array-union@2.1.0: {}
817 |
818 | astral-regex@2.0.0: {}
819 |
820 | balanced-match@2.0.0: {}
821 |
822 | base64-js@1.5.1: {}
823 |
824 | braces@3.0.3:
825 | dependencies:
826 | fill-range: 7.1.1
827 |
828 | buffer@6.0.3:
829 | dependencies:
830 | base64-js: 1.5.1
831 | ieee754: 1.2.1
832 |
833 | cacheable@1.10.0:
834 | dependencies:
835 | hookified: 1.9.1
836 | keyv: 5.3.3
837 |
838 | callsites@3.1.0: {}
839 |
840 | chalk@5.4.1: {}
841 |
842 | chokidar@4.0.3:
843 | dependencies:
844 | readdirp: 4.1.2
845 |
846 | chrome-remote-interface@0.33.3:
847 | dependencies:
848 | commander: 2.11.0
849 | ws: 7.5.10
850 | transitivePeerDependencies:
851 | - bufferutil
852 | - utf-8-validate
853 |
854 | cli-table3@0.6.5:
855 | dependencies:
856 | string-width: 4.2.3
857 | optionalDependencies:
858 | '@colors/colors': 1.5.0
859 |
860 | color-convert@2.0.1:
861 | dependencies:
862 | color-name: 1.1.4
863 |
864 | color-name@1.1.4: {}
865 |
866 | colord@2.9.3: {}
867 |
868 | commander@2.11.0: {}
869 |
870 | cosmiconfig@9.0.0:
871 | dependencies:
872 | env-paths: 2.2.1
873 | import-fresh: 3.3.1
874 | js-yaml: 4.1.0
875 | parse-json: 5.2.0
876 |
877 | css-functions-list@3.2.3: {}
878 |
879 | css-tree@3.1.0:
880 | dependencies:
881 | mdn-data: 2.12.2
882 | source-map-js: 1.2.1
883 |
884 | cssesc@3.0.0: {}
885 |
886 | csv-parse@5.6.0: {}
887 |
888 | debug@4.4.1:
889 | dependencies:
890 | ms: 2.1.3
891 |
892 | detect-libc@1.0.3:
893 | optional: true
894 |
895 | devtools-protocol@0.0.927104: {}
896 |
897 | dir-glob@3.0.1:
898 | dependencies:
899 | path-type: 4.0.0
900 |
901 | dotenv@16.5.0: {}
902 |
903 | emoji-regex@8.0.0: {}
904 |
905 | env-paths@2.2.1: {}
906 |
907 | error-ex@1.3.2:
908 | dependencies:
909 | is-arrayish: 0.2.1
910 |
911 | fast-deep-equal@3.1.3: {}
912 |
913 | fast-glob@3.3.3:
914 | dependencies:
915 | '@nodelib/fs.stat': 2.0.5
916 | '@nodelib/fs.walk': 1.2.8
917 | glob-parent: 5.1.2
918 | merge2: 1.4.1
919 | micromatch: 4.0.8
920 |
921 | fast-uri@3.0.6: {}
922 |
923 | fastest-levenshtein@1.0.16: {}
924 |
925 | fastq@1.19.1:
926 | dependencies:
927 | reusify: 1.1.0
928 |
929 | file-entry-cache@10.1.1:
930 | dependencies:
931 | flat-cache: 6.1.10
932 |
933 | fill-range@7.1.1:
934 | dependencies:
935 | to-regex-range: 5.0.1
936 |
937 | flat-cache@6.1.10:
938 | dependencies:
939 | cacheable: 1.10.0
940 | flatted: 3.3.3
941 | hookified: 1.9.1
942 |
943 | flatted@3.3.3: {}
944 |
945 | glob-parent@5.1.2:
946 | dependencies:
947 | is-glob: 4.0.3
948 |
949 | global-modules@2.0.0:
950 | dependencies:
951 | global-prefix: 3.0.0
952 |
953 | global-prefix@3.0.0:
954 | dependencies:
955 | ini: 1.3.8
956 | kind-of: 6.0.3
957 | which: 1.3.1
958 |
959 | globby@11.1.0:
960 | dependencies:
961 | array-union: 2.1.0
962 | dir-glob: 3.0.1
963 | fast-glob: 3.3.3
964 | ignore: 5.3.2
965 | merge2: 1.4.1
966 | slash: 3.0.0
967 |
968 | globjoin@0.1.4: {}
969 |
970 | has-flag@4.0.0: {}
971 |
972 | hookified@1.9.1: {}
973 |
974 | html-tags@3.3.1: {}
975 |
976 | ieee754@1.2.1: {}
977 |
978 | ignore@5.3.2: {}
979 |
980 | ignore@7.0.5: {}
981 |
982 | immutable@5.1.2: {}
983 |
984 | import-fresh@3.3.1:
985 | dependencies:
986 | parent-module: 1.0.1
987 | resolve-from: 4.0.0
988 |
989 | imurmurhash@0.1.4: {}
990 |
991 | ini@1.3.8: {}
992 |
993 | is-arrayish@0.2.1: {}
994 |
995 | is-extglob@2.1.1: {}
996 |
997 | is-fullwidth-code-point@3.0.0: {}
998 |
999 | is-glob@4.0.3:
1000 | dependencies:
1001 | is-extglob: 2.1.1
1002 |
1003 | is-number@7.0.0: {}
1004 |
1005 | is-plain-object@5.0.0: {}
1006 |
1007 | isexe@2.0.0: {}
1008 |
1009 | js-tokens@4.0.0: {}
1010 |
1011 | js-yaml@4.1.0:
1012 | dependencies:
1013 | argparse: 2.0.1
1014 |
1015 | json-parse-even-better-errors@2.3.1: {}
1016 |
1017 | json-schema-traverse@1.0.0: {}
1018 |
1019 | keyv@5.3.3:
1020 | dependencies:
1021 | '@keyv/serialize': 1.0.3
1022 |
1023 | kind-of@6.0.3: {}
1024 |
1025 | known-css-properties@0.36.0: {}
1026 |
1027 | lines-and-columns@1.2.4: {}
1028 |
1029 | lodash.truncate@4.4.2: {}
1030 |
1031 | mathml-tag-names@2.1.3: {}
1032 |
1033 | mdn-data@2.12.2: {}
1034 |
1035 | mdn-data@2.21.0: {}
1036 |
1037 | meow@13.2.0: {}
1038 |
1039 | merge2@1.4.1: {}
1040 |
1041 | micromatch@4.0.8:
1042 | dependencies:
1043 | braces: 3.0.3
1044 | picomatch: 2.3.1
1045 |
1046 | ms@2.1.3: {}
1047 |
1048 | nanoid@3.3.11: {}
1049 |
1050 | node-addon-api@7.1.1:
1051 | optional: true
1052 |
1053 | normalize-path@3.0.0: {}
1054 |
1055 | parent-module@1.0.1:
1056 | dependencies:
1057 | callsites: 3.1.0
1058 |
1059 | parse-json@5.2.0:
1060 | dependencies:
1061 | '@babel/code-frame': 7.27.1
1062 | error-ex: 1.3.2
1063 | json-parse-even-better-errors: 2.3.1
1064 | lines-and-columns: 1.2.4
1065 |
1066 | path-type@4.0.0: {}
1067 |
1068 | picocolors@1.1.1: {}
1069 |
1070 | picomatch@2.3.1: {}
1071 |
1072 | postcss-media-query-parser@0.2.3: {}
1073 |
1074 | postcss-resolve-nested-selector@0.1.6: {}
1075 |
1076 | postcss-safe-parser@7.0.1(postcss@8.5.4):
1077 | dependencies:
1078 | postcss: 8.5.4
1079 |
1080 | postcss-scss@4.0.9(postcss@8.5.4):
1081 | dependencies:
1082 | postcss: 8.5.4
1083 |
1084 | postcss-selector-parser@7.1.0:
1085 | dependencies:
1086 | cssesc: 3.0.0
1087 | util-deprecate: 1.0.2
1088 |
1089 | postcss-value-parser@4.2.0: {}
1090 |
1091 | postcss@8.5.4:
1092 | dependencies:
1093 | nanoid: 3.3.11
1094 | picocolors: 1.1.1
1095 | source-map-js: 1.2.1
1096 |
1097 | queue-microtask@1.2.3: {}
1098 |
1099 | readdirp@4.1.2: {}
1100 |
1101 | require-from-string@2.0.2: {}
1102 |
1103 | resolve-from@4.0.0: {}
1104 |
1105 | resolve-from@5.0.0: {}
1106 |
1107 | reusify@1.1.0: {}
1108 |
1109 | run-parallel@1.2.0:
1110 | dependencies:
1111 | queue-microtask: 1.2.3
1112 |
1113 | sass@1.89.1:
1114 | dependencies:
1115 | chokidar: 4.0.3
1116 | immutable: 5.1.2
1117 | source-map-js: 1.2.1
1118 | optionalDependencies:
1119 | '@parcel/watcher': 2.5.1
1120 |
1121 | signal-exit@4.1.0: {}
1122 |
1123 | slash@3.0.0: {}
1124 |
1125 | slice-ansi@4.0.0:
1126 | dependencies:
1127 | ansi-styles: 4.3.0
1128 | astral-regex: 2.0.0
1129 | is-fullwidth-code-point: 3.0.0
1130 |
1131 | source-map-js@1.2.1: {}
1132 |
1133 | string-width@4.2.3:
1134 | dependencies:
1135 | emoji-regex: 8.0.0
1136 | is-fullwidth-code-point: 3.0.0
1137 | strip-ansi: 6.0.1
1138 |
1139 | strip-ansi@6.0.1:
1140 | dependencies:
1141 | ansi-regex: 5.0.1
1142 |
1143 | stylelint-config-recommended-scss@15.0.1(postcss@8.5.4)(stylelint@16.20.0):
1144 | dependencies:
1145 | postcss-scss: 4.0.9(postcss@8.5.4)
1146 | stylelint: 16.20.0
1147 | stylelint-config-recommended: 16.0.0(stylelint@16.20.0)
1148 | stylelint-scss: 6.12.0(stylelint@16.20.0)
1149 | optionalDependencies:
1150 | postcss: 8.5.4
1151 |
1152 | stylelint-config-recommended@16.0.0(stylelint@16.20.0):
1153 | dependencies:
1154 | stylelint: 16.20.0
1155 |
1156 | stylelint-config-standard-scss@15.0.1(postcss@8.5.4)(stylelint@16.20.0):
1157 | dependencies:
1158 | stylelint: 16.20.0
1159 | stylelint-config-recommended-scss: 15.0.1(postcss@8.5.4)(stylelint@16.20.0)
1160 | stylelint-config-standard: 38.0.0(stylelint@16.20.0)
1161 | optionalDependencies:
1162 | postcss: 8.5.4
1163 |
1164 | stylelint-config-standard@38.0.0(stylelint@16.20.0):
1165 | dependencies:
1166 | stylelint: 16.20.0
1167 | stylelint-config-recommended: 16.0.0(stylelint@16.20.0)
1168 |
1169 | stylelint-scss@6.12.0(stylelint@16.20.0):
1170 | dependencies:
1171 | css-tree: 3.1.0
1172 | is-plain-object: 5.0.0
1173 | known-css-properties: 0.36.0
1174 | mdn-data: 2.21.0
1175 | postcss-media-query-parser: 0.2.3
1176 | postcss-resolve-nested-selector: 0.1.6
1177 | postcss-selector-parser: 7.1.0
1178 | postcss-value-parser: 4.2.0
1179 | stylelint: 16.20.0
1180 |
1181 | stylelint@16.20.0:
1182 | dependencies:
1183 | '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
1184 | '@csstools/css-tokenizer': 3.0.4
1185 | '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
1186 | '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0)
1187 | '@dual-bundle/import-meta-resolve': 4.1.0
1188 | balanced-match: 2.0.0
1189 | colord: 2.9.3
1190 | cosmiconfig: 9.0.0
1191 | css-functions-list: 3.2.3
1192 | css-tree: 3.1.0
1193 | debug: 4.4.1
1194 | fast-glob: 3.3.3
1195 | fastest-levenshtein: 1.0.16
1196 | file-entry-cache: 10.1.1
1197 | global-modules: 2.0.0
1198 | globby: 11.1.0
1199 | globjoin: 0.1.4
1200 | html-tags: 3.3.1
1201 | ignore: 7.0.5
1202 | imurmurhash: 0.1.4
1203 | is-plain-object: 5.0.0
1204 | known-css-properties: 0.36.0
1205 | mathml-tag-names: 2.1.3
1206 | meow: 13.2.0
1207 | micromatch: 4.0.8
1208 | normalize-path: 3.0.0
1209 | picocolors: 1.1.1
1210 | postcss: 8.5.4
1211 | postcss-resolve-nested-selector: 0.1.6
1212 | postcss-safe-parser: 7.0.1(postcss@8.5.4)
1213 | postcss-selector-parser: 7.1.0
1214 | postcss-value-parser: 4.2.0
1215 | resolve-from: 5.0.0
1216 | string-width: 4.2.3
1217 | supports-hyperlinks: 3.2.0
1218 | svg-tags: 1.0.0
1219 | table: 6.9.0
1220 | write-file-atomic: 5.0.1
1221 | transitivePeerDependencies:
1222 | - supports-color
1223 | - typescript
1224 |
1225 | supports-color@7.2.0:
1226 | dependencies:
1227 | has-flag: 4.0.0
1228 |
1229 | supports-hyperlinks@3.2.0:
1230 | dependencies:
1231 | has-flag: 4.0.0
1232 | supports-color: 7.2.0
1233 |
1234 | svg-tags@1.0.0: {}
1235 |
1236 | table@6.9.0:
1237 | dependencies:
1238 | ajv: 8.17.1
1239 | lodash.truncate: 4.4.2
1240 | slice-ansi: 4.0.0
1241 | string-width: 4.2.3
1242 | strip-ansi: 6.0.1
1243 |
1244 | to-regex-range@5.0.1:
1245 | dependencies:
1246 | is-number: 7.0.0
1247 |
1248 | undici-types@6.21.0: {}
1249 |
1250 | util-deprecate@1.0.2: {}
1251 |
1252 | which@1.3.1:
1253 | dependencies:
1254 | isexe: 2.0.0
1255 |
1256 | write-file-atomic@5.0.1:
1257 | dependencies:
1258 | imurmurhash: 0.1.4
1259 | signal-exit: 4.1.0
1260 |
1261 | ws@7.5.10: {}
1262 |
--------------------------------------------------------------------------------