Git Product home page Git Product logo

discord.css's Introduction

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.

discord.css's People

Contributors

edwin-shdw avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.