├── .gitignore ├── CREDITS.md ├── LICENSE ├── README.md ├── clients ├── metas │ ├── betterdiscord.json │ └── userstyle.json ├── modern-indicators.theme.css └── modern-indicators.user.css ├── package.json ├── src ├── source.css ├── source.scss ├── theme │ ├── channels.scss │ ├── discovery.scss │ ├── index.scss │ └── private-messages.scss └── variables │ ├── advanced.scss │ ├── default.scss │ └── index.scss └── theme-config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/README.md -------------------------------------------------------------------------------- /clients/metas/betterdiscord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/clients/metas/betterdiscord.json -------------------------------------------------------------------------------- /clients/metas/userstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/clients/metas/userstyle.json -------------------------------------------------------------------------------- /clients/modern-indicators.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/clients/modern-indicators.theme.css -------------------------------------------------------------------------------- /clients/modern-indicators.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/clients/modern-indicators.user.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/package.json -------------------------------------------------------------------------------- /src/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/source.css -------------------------------------------------------------------------------- /src/source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/source.scss -------------------------------------------------------------------------------- /src/theme/channels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/theme/channels.scss -------------------------------------------------------------------------------- /src/theme/discovery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/theme/discovery.scss -------------------------------------------------------------------------------- /src/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/theme/index.scss -------------------------------------------------------------------------------- /src/theme/private-messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/theme/private-messages.scss -------------------------------------------------------------------------------- /src/variables/advanced.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/variables/advanced.scss -------------------------------------------------------------------------------- /src/variables/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/variables/default.scss -------------------------------------------------------------------------------- /src/variables/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/src/variables/index.scss -------------------------------------------------------------------------------- /theme-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions/modern-indicators/HEAD/theme-config.json --------------------------------------------------------------------------------