An open API service indexing awesome lists of open source software.

https://github.com/adamslack/dracula-css

The colours from the dracula colour scheme as a set of css variables.
https://github.com/adamslack/dracula-css

Last synced: 10 months ago
JSON representation

The colours from the dracula colour scheme as a set of css variables.

Awesome Lists containing this project

README

          

# dracula-css
The colours from the [Dracula Theme](https://draculatheme.com/) as a set of css variables.

```css
:root {
--background: #282a36;
--current-line: #44475a;
--foreground: #f8f8f2;
--comment: #6272a4;
--cyan: #8be9fd;
--green: #50fa7b;
--orange: #ffb86c;
--pink: #ff79c6;
--purlple: #bd93f9;
--red: #ff5555;
--yellow: #f1fa8c;
}
```

You may also want to make use of:
```css
:root {
--background-lighter: #383a59;
}
```
Colour Chip | Hex | Name
----------------------------------------------------------------|-----------|----------------------
![#282a36](https://via.placeholder.com/60/282a36/000000?text=+) | `#282a36` | `background`
![#383a59](https://via.placeholder.com/60/383a59/000000?text=+) | `#383a59` | `background-lighter `
![#44475a](https://via.placeholder.com/60/44475a/000000?text=+) | `#44475a` | `current-line`
![#f8f8f2](https://via.placeholder.com/60/f8f8f2/000000?text=+) | `#f8f8f2` | `foreground`
![#6272a4](https://via.placeholder.com/60/6272a4/000000?text=+) | `#6272a4` | `comment`
![#8be9fd](https://via.placeholder.com/60/8be9fd/000000?text=+) | `#8be9fd` | `cyan`
![#50fa7b](https://via.placeholder.com/60/50fa7b/000000?text=+) | `#50fa7b` | `green`
![#ffb86c](https://via.placeholder.com/60/ffb86c/000000?text=+) | `#ffb86c` | `orange`
![#ff79c6](https://via.placeholder.com/60/ff79c6/000000?text=+) | `#ff79c6` | `pink`
![#bd93f9](https://via.placeholder.com/60/bd93f9/000000?text=+) | `#bd93f9` | `purlple`
![#ff5555](https://via.placeholder.com/60/ff5555/000000?text=+) | `#ff5555` | `red`
![#f1fa8c](https://via.placeholder.com/60/f1fa8c/000000?text=+) | `#f1fa8c` | `yellow`