0.3.2 • Published 4 months ago

discord.css v0.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

About

Discord.css is a stylesheet looking almost like Discords. It is ideal for creating previews of components like modals or messages. You can use the production-ready CSS files or use it as a module in your SASS.

You can get a preview here!

Getting started

You can download Discord.css directly from this repository or from npm.

npm install discord.css

Use it with CSS

If you want to customize the stylesheet you should download the discord.css file. However, there is a minified version which you should prefer using.

Use it with SASS

You have two options for importing Discord.css's files: include all of Discord.css, or pick the parts you need.

// Option A: Include all of Discord.css

@use "/node_modules/discord.css/scss";

// Then add additional custom code here
// Option B: Include parts of Discord.css

// 1. Include the root first
@use "/node_modules/discord.css/scss/root";

// 2. Include the parts you need
@use "/node_modules/discord.css/scss/button";
@use "/node_modules/discord.css/scss/embed";
@use "/node_modules/discord.css/scss/message";
// ...

// 3. Then add additional custom code here

Prefix

To avoid collision with your own codebase Discord.css uses a prefix. This prefix will be applied to all css variables as well as all class names.

By default, the prefix is set to dc- (note the trailing dash). You can change it by loading the module with a configuration. Here's an example using fn- as prefix:

@use "/node_modules/discord.css/scss" with ($prefix: "fn-");

If you are loading parts of Discord.css you will need to load the variables module instead.

@use "/node_modules/discord.css/scss/variables" with ($prefix: "fn-");

Note: You must load the variables module before any other Discord.css module.

Acknowledgement

Brand and Design by Discord.

License

Code released under the MIT.

0.3.2

4 months ago

0.3.1

4 months ago

0.3.0

5 months ago

0.2.1

7 months ago

0.2.0

7 months ago

1.0.1

2 years ago

1.0.0

2 years ago