├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets └── banner.png ├── clients ├── bd │ └── gradient-buttons.theme.css └── stylus │ └── gradient-buttons.user.css ├── manifest.json ├── powercord_manifest.json └── src ├── base └── _variables.scss ├── components ├── _buttons.scss ├── _context.scss └── _message-actions.scss ├── source.css └── source.scss /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/assets/banner.png -------------------------------------------------------------------------------- /clients/bd/gradient-buttons.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/clients/bd/gradient-buttons.theme.css -------------------------------------------------------------------------------- /clients/stylus/gradient-buttons.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/clients/stylus/gradient-buttons.user.css -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/manifest.json -------------------------------------------------------------------------------- /powercord_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/powercord_manifest.json -------------------------------------------------------------------------------- /src/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/base/_variables.scss -------------------------------------------------------------------------------- /src/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/components/_buttons.scss -------------------------------------------------------------------------------- /src/components/_context.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/components/_context.scss -------------------------------------------------------------------------------- /src/components/_message-actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/components/_message-actions.scss -------------------------------------------------------------------------------- /src/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/source.css -------------------------------------------------------------------------------- /src/source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discord-extensions-archived/gradient-buttonsv2/HEAD/src/source.scss --------------------------------------------------------------------------------