Skip to content

Commit

Permalink
πŸ§›πŸ»β€β™‚οΈ Dracula Color Palette for Tailwind
Browse files Browse the repository at this point in the history
πŸ§›πŸ»β€β™‚οΈπŸŽ¨
  • Loading branch information
nickgraffis authored Mar 24, 2021
1 parent 9b302a1 commit b3acdb8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
const plugin = require('tailwindcss/plugin')

module.exports = plugin(function({ theme }) {

}, {
theme: {
extend: {
colors: theme => ({
'darker': '#282a36',
'dark': '#44475a',
'light': '#f8f8f2',
'blue': '#6272a4',
'cyan': '#8be9fd',
'green': '#50fa7b',
'orange': '#ffb86c',
'pink': '#ff79c6',
'purple': '#bd93f9',
'red': '#ff5555',
'yellow': '#f1fa8c',
'nosferatu': '#282a36',
'aro': '#44475a',
'cullen': '#f8f8f2',
'blue': '#6272a4',
'vanHelsing': '#8be9fd',
'blade': '#50fa7b',
'morbius': '#ffb86c',
'buffy': '#ff79c6',
'dracula': '#bd93f9',
'marcelin': '#ff5555',
'lincoln': '#f1fa8c',
})
}
}
})

0 comments on commit b3acdb8

Please sign in to comment.