├── .github ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ └── compile.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── bd-scss.config.js ├── package.json ├── pnpm-lock.yaml ├── powercord_manifest.json └── src ├── base.scss ├── core └── _root.scss ├── dev.scss ├── dist.scss └── theme ├── _app.scss ├── _bd.scss ├── _chat.scss ├── _guilds.scss ├── _index.scss ├── _inputs.scss ├── _members.scss ├── _mixins.scss ├── _modals.scss ├── _pages.scss ├── _popouts.scss ├── _root.scss ├── _settings.scss ├── _sidebar.scss ├── _theme.scss ├── _threads.scss └── _toolbar.scss /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/README.md -------------------------------------------------------------------------------- /bd-scss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/bd-scss.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /powercord_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/powercord_manifest.json -------------------------------------------------------------------------------- /src/base.scss: -------------------------------------------------------------------------------- 1 | @use './theme'; -------------------------------------------------------------------------------- /src/core/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/core/_root.scss -------------------------------------------------------------------------------- /src/dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/dev.scss -------------------------------------------------------------------------------- /src/dist.scss: -------------------------------------------------------------------------------- 1 | @use './core/root'; 2 | -------------------------------------------------------------------------------- /src/theme/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_app.scss -------------------------------------------------------------------------------- /src/theme/_bd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_bd.scss -------------------------------------------------------------------------------- /src/theme/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_chat.scss -------------------------------------------------------------------------------- /src/theme/_guilds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_guilds.scss -------------------------------------------------------------------------------- /src/theme/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_index.scss -------------------------------------------------------------------------------- /src/theme/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_inputs.scss -------------------------------------------------------------------------------- /src/theme/_members.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_members.scss -------------------------------------------------------------------------------- /src/theme/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_mixins.scss -------------------------------------------------------------------------------- /src/theme/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_modals.scss -------------------------------------------------------------------------------- /src/theme/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_pages.scss -------------------------------------------------------------------------------- /src/theme/_popouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_popouts.scss -------------------------------------------------------------------------------- /src/theme/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_root.scss -------------------------------------------------------------------------------- /src/theme/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_settings.scss -------------------------------------------------------------------------------- /src/theme/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_sidebar.scss -------------------------------------------------------------------------------- /src/theme/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_theme.scss -------------------------------------------------------------------------------- /src/theme/_threads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_threads.scss -------------------------------------------------------------------------------- /src/theme/_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/SimplyDark/HEAD/src/theme/_toolbar.scss --------------------------------------------------------------------------------