├── .commitlintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── preview-light.png ├── preview.png └── workflows │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .tool-versions ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── assets ├── discover │ └── hub.svg ├── global │ └── upload │ │ ├── acrobat.svg │ │ ├── ae.svg │ │ ├── ai.svg │ │ ├── archive.svg │ │ ├── audio.svg │ │ ├── code.svg │ │ ├── document.svg │ │ ├── image.svg │ │ ├── ps.svg │ │ ├── sketch.svg │ │ ├── spreadsheet.svg │ │ ├── unknown.svg │ │ ├── video.svg │ │ └── webcode.svg ├── inbox │ └── check.svg ├── server │ ├── app-directory │ │ └── success.svg │ ├── boost │ │ └── sparks.svg │ ├── channel │ │ ├── announcement │ │ │ ├── follow-bg-light.svg │ │ │ └── follow-bg.svg │ │ ├── stage │ │ │ ├── cross.svg │ │ │ └── star.svg │ │ ├── text │ │ │ └── join.svg │ │ └── voice-emoji-nitro.svg │ └── settings │ │ ├── community │ │ ├── check.svg │ │ ├── shield.svg │ │ ├── stars.svg │ │ └── wrench.svg │ │ └── moderation │ │ ├── type-create.svg │ │ ├── type-delete.svg │ │ └── type-update.svg ├── user │ ├── dm-channel │ │ ├── call-incoming.svg │ │ └── call-missed.svg │ ├── friends │ │ └── discover.svg │ ├── profile │ │ ├── badge-active-developer.svg │ │ ├── badge-certified-moderator.svg │ │ ├── badge-commands.svg │ │ ├── badge-hypesquad-house-1.svg │ │ ├── badge-hypesquad-house-2.svg │ │ ├── badge-hypesquad-house-3.svg │ │ ├── badge-hypesquad.svg │ │ ├── badge-originaly-know-as.png │ │ ├── badge-partner.svg │ │ ├── badge-staff.svg │ │ └── badge-verified-developer.svg │ └── settings │ │ ├── activity │ │ └── cross.svg │ │ └── general │ │ ├── checkmark.svg │ │ └── lock.svg └── web │ ├── android.svg │ ├── apple.svg │ └── windows.svg ├── eslint.config.js ├── manifest.json ├── nordic.replugged.css ├── nordic.theme.css ├── nordic.user.css ├── nordic.vencord.css ├── package.json ├── pnpm-lock.yaml ├── src ├── scripts │ ├── build.js │ └── output.js └── styles │ ├── _discord-color.scss │ ├── _imports.scss │ ├── colors │ ├── _imports.scss │ ├── _utils.scss │ ├── colors.scss │ └── variables.scss │ ├── discover.scss │ ├── global.scss │ ├── hljs.scss │ ├── plugins │ ├── better-discord │ │ ├── _imports.scss │ │ ├── settings.scss │ │ └── staff-tag.scss │ └── vencord │ │ ├── _imports.scss │ │ └── settings.scss │ ├── server │ ├── _general.scss │ ├── _imports.scss │ ├── boost.scss │ ├── channel │ │ ├── _imports.scss │ │ ├── announcement.scss │ │ ├── forum.scss │ │ ├── stage.scss │ │ ├── text.scss │ │ └── voice.scss │ └── settings │ │ ├── _imports.scss │ │ ├── _menu.scss │ │ ├── community.scss │ │ ├── general.scss │ │ └── moderation.scss │ ├── sidebar-left.scss │ ├── user │ ├── _general.scss │ ├── _imports.scss │ ├── dm-channel.scss │ ├── profile.scss │ └── settings │ │ ├── _imports.scss │ │ ├── _menu.scss │ │ ├── activity.scss │ │ ├── app_settings.scss │ │ ├── general.scss │ │ └── payment.scss │ └── web.scss └── uniform ├── .github ├── preview-light.png └── preview.png ├── README.md ├── nordic.theme.css ├── nordic.user.css └── nordic.vencord.css /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/preview-light.png -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/preview.png -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bundle/ 3 | dist/ 4 | todo 5 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit "$1" 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run lint 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 24.2.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/README.md -------------------------------------------------------------------------------- /assets/discover/hub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/discover/hub.svg -------------------------------------------------------------------------------- /assets/global/upload/acrobat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/acrobat.svg -------------------------------------------------------------------------------- /assets/global/upload/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/ae.svg -------------------------------------------------------------------------------- /assets/global/upload/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/ai.svg -------------------------------------------------------------------------------- /assets/global/upload/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/archive.svg -------------------------------------------------------------------------------- /assets/global/upload/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/audio.svg -------------------------------------------------------------------------------- /assets/global/upload/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/code.svg -------------------------------------------------------------------------------- /assets/global/upload/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/document.svg -------------------------------------------------------------------------------- /assets/global/upload/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/image.svg -------------------------------------------------------------------------------- /assets/global/upload/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/ps.svg -------------------------------------------------------------------------------- /assets/global/upload/sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/sketch.svg -------------------------------------------------------------------------------- /assets/global/upload/spreadsheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/spreadsheet.svg -------------------------------------------------------------------------------- /assets/global/upload/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/unknown.svg -------------------------------------------------------------------------------- /assets/global/upload/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/video.svg -------------------------------------------------------------------------------- /assets/global/upload/webcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/global/upload/webcode.svg -------------------------------------------------------------------------------- /assets/inbox/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/inbox/check.svg -------------------------------------------------------------------------------- /assets/server/app-directory/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/app-directory/success.svg -------------------------------------------------------------------------------- /assets/server/boost/sparks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/boost/sparks.svg -------------------------------------------------------------------------------- /assets/server/channel/announcement/follow-bg-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/announcement/follow-bg-light.svg -------------------------------------------------------------------------------- /assets/server/channel/announcement/follow-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/announcement/follow-bg.svg -------------------------------------------------------------------------------- /assets/server/channel/stage/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/stage/cross.svg -------------------------------------------------------------------------------- /assets/server/channel/stage/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/stage/star.svg -------------------------------------------------------------------------------- /assets/server/channel/text/join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/text/join.svg -------------------------------------------------------------------------------- /assets/server/channel/voice-emoji-nitro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/channel/voice-emoji-nitro.svg -------------------------------------------------------------------------------- /assets/server/settings/community/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/community/check.svg -------------------------------------------------------------------------------- /assets/server/settings/community/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/community/shield.svg -------------------------------------------------------------------------------- /assets/server/settings/community/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/community/stars.svg -------------------------------------------------------------------------------- /assets/server/settings/community/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/community/wrench.svg -------------------------------------------------------------------------------- /assets/server/settings/moderation/type-create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/moderation/type-create.svg -------------------------------------------------------------------------------- /assets/server/settings/moderation/type-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/moderation/type-delete.svg -------------------------------------------------------------------------------- /assets/server/settings/moderation/type-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/server/settings/moderation/type-update.svg -------------------------------------------------------------------------------- /assets/user/dm-channel/call-incoming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/dm-channel/call-incoming.svg -------------------------------------------------------------------------------- /assets/user/dm-channel/call-missed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/dm-channel/call-missed.svg -------------------------------------------------------------------------------- /assets/user/friends/discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/friends/discover.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-active-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-active-developer.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-certified-moderator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-certified-moderator.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-commands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-commands.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-hypesquad-house-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-hypesquad-house-1.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-hypesquad-house-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-hypesquad-house-2.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-hypesquad-house-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-hypesquad-house-3.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-hypesquad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-hypesquad.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-originaly-know-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-originaly-know-as.png -------------------------------------------------------------------------------- /assets/user/profile/badge-partner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-partner.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-staff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-staff.svg -------------------------------------------------------------------------------- /assets/user/profile/badge-verified-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/profile/badge-verified-developer.svg -------------------------------------------------------------------------------- /assets/user/settings/activity/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/settings/activity/cross.svg -------------------------------------------------------------------------------- /assets/user/settings/general/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/settings/general/checkmark.svg -------------------------------------------------------------------------------- /assets/user/settings/general/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/user/settings/general/lock.svg -------------------------------------------------------------------------------- /assets/web/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/web/android.svg -------------------------------------------------------------------------------- /assets/web/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/web/apple.svg -------------------------------------------------------------------------------- /assets/web/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/assets/web/windows.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/eslint.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/manifest.json -------------------------------------------------------------------------------- /nordic.replugged.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/nordic.replugged.css -------------------------------------------------------------------------------- /nordic.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/nordic.theme.css -------------------------------------------------------------------------------- /nordic.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/nordic.user.css -------------------------------------------------------------------------------- /nordic.vencord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/nordic.vencord.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/scripts/build.js -------------------------------------------------------------------------------- /src/scripts/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/scripts/output.js -------------------------------------------------------------------------------- /src/styles/_discord-color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/_discord-color.scss -------------------------------------------------------------------------------- /src/styles/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/_imports.scss -------------------------------------------------------------------------------- /src/styles/colors/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/colors/_imports.scss -------------------------------------------------------------------------------- /src/styles/colors/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/colors/_utils.scss -------------------------------------------------------------------------------- /src/styles/colors/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/colors/colors.scss -------------------------------------------------------------------------------- /src/styles/colors/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/colors/variables.scss -------------------------------------------------------------------------------- /src/styles/discover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/discover.scss -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/styles/hljs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/hljs.scss -------------------------------------------------------------------------------- /src/styles/plugins/better-discord/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/plugins/better-discord/_imports.scss -------------------------------------------------------------------------------- /src/styles/plugins/better-discord/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/plugins/better-discord/settings.scss -------------------------------------------------------------------------------- /src/styles/plugins/better-discord/staff-tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/plugins/better-discord/staff-tag.scss -------------------------------------------------------------------------------- /src/styles/plugins/vencord/_imports.scss: -------------------------------------------------------------------------------- 1 | @use 'settings.scss'; 2 | -------------------------------------------------------------------------------- /src/styles/plugins/vencord/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/plugins/vencord/settings.scss -------------------------------------------------------------------------------- /src/styles/server/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/_general.scss -------------------------------------------------------------------------------- /src/styles/server/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/_imports.scss -------------------------------------------------------------------------------- /src/styles/server/boost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/boost.scss -------------------------------------------------------------------------------- /src/styles/server/channel/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/_imports.scss -------------------------------------------------------------------------------- /src/styles/server/channel/announcement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/announcement.scss -------------------------------------------------------------------------------- /src/styles/server/channel/forum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/forum.scss -------------------------------------------------------------------------------- /src/styles/server/channel/stage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/stage.scss -------------------------------------------------------------------------------- /src/styles/server/channel/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/text.scss -------------------------------------------------------------------------------- /src/styles/server/channel/voice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/channel/voice.scss -------------------------------------------------------------------------------- /src/styles/server/settings/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/settings/_imports.scss -------------------------------------------------------------------------------- /src/styles/server/settings/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/settings/_menu.scss -------------------------------------------------------------------------------- /src/styles/server/settings/community.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/settings/community.scss -------------------------------------------------------------------------------- /src/styles/server/settings/general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/settings/general.scss -------------------------------------------------------------------------------- /src/styles/server/settings/moderation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/server/settings/moderation.scss -------------------------------------------------------------------------------- /src/styles/sidebar-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/sidebar-left.scss -------------------------------------------------------------------------------- /src/styles/user/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/_general.scss -------------------------------------------------------------------------------- /src/styles/user/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/_imports.scss -------------------------------------------------------------------------------- /src/styles/user/dm-channel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/dm-channel.scss -------------------------------------------------------------------------------- /src/styles/user/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/profile.scss -------------------------------------------------------------------------------- /src/styles/user/settings/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/_imports.scss -------------------------------------------------------------------------------- /src/styles/user/settings/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/_menu.scss -------------------------------------------------------------------------------- /src/styles/user/settings/activity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/activity.scss -------------------------------------------------------------------------------- /src/styles/user/settings/app_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/app_settings.scss -------------------------------------------------------------------------------- /src/styles/user/settings/general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/general.scss -------------------------------------------------------------------------------- /src/styles/user/settings/payment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/user/settings/payment.scss -------------------------------------------------------------------------------- /src/styles/web.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/src/styles/web.scss -------------------------------------------------------------------------------- /uniform/.github/preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/.github/preview-light.png -------------------------------------------------------------------------------- /uniform/.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/.github/preview.png -------------------------------------------------------------------------------- /uniform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/README.md -------------------------------------------------------------------------------- /uniform/nordic.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/nordic.theme.css -------------------------------------------------------------------------------- /uniform/nordic.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/nordic.user.css -------------------------------------------------------------------------------- /uniform/nordic.vencord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orblazer/discord-nordic/HEAD/uniform/nordic.vencord.css --------------------------------------------------------------------------------