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.
- Host: GitHub
- URL: https://github.com/adamslack/dracula-css
- Owner: AdamSlack
- Created: 2020-08-26T20:28:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-26T20:42:48.000Z (almost 6 years ago)
- Last Synced: 2025-02-05T20:06:18.436Z (over 1 year ago)
- Language: CSS
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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` | `background`
 | `#383a59` | `background-lighter `
 | `#44475a` | `current-line`
 | `#f8f8f2` | `foreground`
 | `#6272a4` | `comment`
 | `#8be9fd` | `cyan`
 | `#50fa7b` | `green`
 | `#ffb86c` | `orange`
 | `#ff79c6` | `pink`
 | `#bd93f9` | `purlple`
 | `#ff5555` | `red`
 | `#f1fa8c` | `yellow`