mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
* style: Formatted 17 files & changes messageHelper util * style: Formatted HTML and CSS files * Revert "style: Formatted 17 files & changes messageHelper util" This reverts commit988d7fa6d2. * style(style.css): Formatted main style file with tabwidth 2 * chore: Added docs maintainer * chore: Changed typedoc configration * chore(README.md): Removed coming soon from links * chore: Updated Prettier formatter tab width * docs(readme): Improved Readme readability * docs(README): Fixed installation box * style(README.md): Improved readability * chore: Added CONTRIBUTING.md * docs(README.md): Removed old repo link and it's line * docs(README): Updated Intents to djs v14 Co-authored-by: EvolutionX <85353424+EvolutionX-10@users.noreply.github.com> * docs: Updated README example to djs v14 * docs: Formatted README examples * Update README.md * docs: Updated organization description * docs(README): Rename 'fixed' to 'patched' * chore: Updated LICENSE * chore: Updated LICNESE * chore: Changed license to MIT * Delete LICENSE.md * chore: Recreated LICENSE * chore: First License boilerplate preview * style(index.ts): Added a space * chore(index.ts): First license boilerplate preview * chore(PRETTIER): Re-updated the tab width * chore(SECURITY): Updated security.md file * docs(README): Improved readability * fix(README): Fixed typo * style: Updated license boilerplate * style(*): Updated license boilerplate * style: Updated license boilerplate * style: Updated license boilerplate * style: Updated license boilerplate * style: Updated License boilerplate * style: Updated License boilerplate * docs(README): Added stats * docs(README): Temporarily or permanently removed stats * refactor: DRY Principles * feat: finished interactionCreate.ts handling? (need test) * chore: Updated CONTRIBUTING.md file * chore: Updated credits * chore(NPM): Prepared package.json for release * revert: Some changes * revert: Revert back to MIT LICENSE (#50) * chore: Updated LICENSE boilerplate * style: Improved comments * style: Updated comments * fix: Non-exhaustiveness led to commands not registering readyEvent.ts * feat: Add DefinetlyDefined type, more todo statements * feat: Aliases optional * feat: Optional plugins to reduce bloat * feat: better looking typings for modules * refactor: Simplify sernModule handler signature * refactor: make ApplicationCommandOptions optional * refactor: make description optional * refactor: Bring CommandType and PluginType to top level * fix: Fix return type of sernModule * refactor: Why is that not assignable bruh * revert: Re-add plugins overload * fix(CODE_OF_CONDUCT): Removed unusual dot * Update package.json * fix: Resolve conflicts * fix: Resolve conflicts * feat: should be able to register other nodejs event emitters * fix: Standard for of does not resolve promises. Switched to for await * feat: Adding sern event listeners, overriding and typing methods * feat: Edited event names for more conciseness, finished basic event emitters * style: Run prettier * fix: didn't run prettier, now i am * fix: linting issue in markup.ts * fix: prettier wants lf line ending * fix: prettier changes again * feat: add .prettierignore and ignore README.md * feat: add externallyUsed.ts and support BothCommands again * feat: remove comments about prev commit * style: change prettier print width and reformat * feat: adding modal and autocomplete support * feat: Finishing up autocomplete, need to test * feat: Making name required in auto cmp interactions * feat: move name and description out of OptionsData[] * feat: finishing optionData for autocomplete changes, adding class for builder * feat: finishing autocomplete!! * refactor: Simplifying logic of message filter * feat: Adding docs to some data structures, moving to default from export files * refactor: cleaning up code, removing unuseds * feat: adding refactoring for repetitive event plugin processing * feat: adding better typings, refactoring * refactor: remove unnecessary nullish short circuit * refactor: remove unnecessary nullish short circuit * feat: add docs/ to npmignore * style: Formatted 17 files & changes messageHelper util * style: Formatted HTML and CSS files * Revert "style: Formatted 17 files & changes messageHelper util" This reverts commit988d7fa6d2. * style(style.css): Formatted main style file with tabwidth 2 * chore: Added docs maintainer * chore: Changed typedoc configration * chore(README.md): Removed coming soon from links * docs(readme): Improved Readme readability * chore: Added CONTRIBUTING.md * docs(README): Fixed installation box * style(README.md): Improved readability * docs(README.md): Removed old repo link and it's line * docs: Updated README example to djs v14 * docs(README): Updated Intents to djs v14 Co-authored-by: EvolutionX <85353424+EvolutionX-10@users.noreply.github.com> * docs: Formatted README examples * Update README.md * chore: Updated LICENSE * chore: Updated LICNESE * chore: Changed license to MIT * Delete LICENSE.md * chore: Recreated LICENSE * chore: First License boilerplate preview * style(index.ts): Added a space * chore(index.ts): First license boilerplate preview * chore(SECURITY): Updated security.md file * style: Updated license boilerplate * docs(README): Added stats * chore: Updated CONTRIBUTING.md file * chore: Updated credits * chore(NPM): Prepared package.json for release * revert: Some changes * revert: Revert back to MIT LICENSE (#50) * fix(CODE_OF_CONDUCT): Removed unusual dot * fix: Resolve conflicts * fix: Resolve conflicts Co-authored-by: EvolutionX <85353424+EvolutionX-10@users.noreply.github.com> Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com>
111 lines
2.2 KiB
CSS
111 lines
2.2 KiB
CSS
:root {
|
|
--light-hl-0: #000000;
|
|
--dark-hl-0: #d4d4d4;
|
|
--light-hl-1: #af00db;
|
|
--dark-hl-1: #c586c0;
|
|
--light-hl-2: #001080;
|
|
--dark-hl-2: #9cdcfe;
|
|
--light-hl-3: #a31515;
|
|
--dark-hl-3: #ce9178;
|
|
--light-hl-4: #0000ff;
|
|
--dark-hl-4: #569cd6;
|
|
--light-hl-5: #0070c1;
|
|
--dark-hl-5: #4fc1ff;
|
|
--light-hl-6: #795e26;
|
|
--dark-hl-6: #dcdcaa;
|
|
--light-hl-7: #008000;
|
|
--dark-hl-7: #6a9955;
|
|
--light-hl-8: #cd3131;
|
|
--dark-hl-8: #f44747;
|
|
--light-code-background: #f5f5f5;
|
|
--dark-code-background: #1e1e1e;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--hl-0: var(--light-hl-0);
|
|
--hl-1: var(--light-hl-1);
|
|
--hl-2: var(--light-hl-2);
|
|
--hl-3: var(--light-hl-3);
|
|
--hl-4: var(--light-hl-4);
|
|
--hl-5: var(--light-hl-5);
|
|
--hl-6: var(--light-hl-6);
|
|
--hl-7: var(--light-hl-7);
|
|
--hl-8: var(--light-hl-8);
|
|
--code-background: var(--light-code-background);
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--hl-0: var(--dark-hl-0);
|
|
--hl-1: var(--dark-hl-1);
|
|
--hl-2: var(--dark-hl-2);
|
|
--hl-3: var(--dark-hl-3);
|
|
--hl-4: var(--dark-hl-4);
|
|
--hl-5: var(--dark-hl-5);
|
|
--hl-6: var(--dark-hl-6);
|
|
--hl-7: var(--dark-hl-7);
|
|
--hl-8: var(--dark-hl-8);
|
|
--code-background: var(--dark-code-background);
|
|
}
|
|
}
|
|
|
|
body.light {
|
|
--hl-0: var(--light-hl-0);
|
|
--hl-1: var(--light-hl-1);
|
|
--hl-2: var(--light-hl-2);
|
|
--hl-3: var(--light-hl-3);
|
|
--hl-4: var(--light-hl-4);
|
|
--hl-5: var(--light-hl-5);
|
|
--hl-6: var(--light-hl-6);
|
|
--hl-7: var(--light-hl-7);
|
|
--hl-8: var(--light-hl-8);
|
|
--code-background: var(--light-code-background);
|
|
}
|
|
|
|
body.dark {
|
|
--hl-0: var(--dark-hl-0);
|
|
--hl-1: var(--dark-hl-1);
|
|
--hl-2: var(--dark-hl-2);
|
|
--hl-3: var(--dark-hl-3);
|
|
--hl-4: var(--dark-hl-4);
|
|
--hl-5: var(--dark-hl-5);
|
|
--hl-6: var(--dark-hl-6);
|
|
--hl-7: var(--dark-hl-7);
|
|
--hl-8: var(--dark-hl-8);
|
|
--code-background: var(--dark-code-background);
|
|
}
|
|
|
|
.hl-0 {
|
|
color: var(--hl-0);
|
|
}
|
|
.hl-1 {
|
|
color: var(--hl-1);
|
|
}
|
|
.hl-2 {
|
|
color: var(--hl-2);
|
|
}
|
|
.hl-3 {
|
|
color: var(--hl-3);
|
|
}
|
|
.hl-4 {
|
|
color: var(--hl-4);
|
|
}
|
|
.hl-5 {
|
|
color: var(--hl-5);
|
|
}
|
|
.hl-6 {
|
|
color: var(--hl-6);
|
|
}
|
|
.hl-7 {
|
|
color: var(--hl-7);
|
|
}
|
|
.hl-8 {
|
|
color: var(--hl-8);
|
|
}
|
|
pre,
|
|
code {
|
|
background: var(--code-background);
|
|
}
|