Skip to content

Commit

Permalink
set tailwind primary color to indigo
Browse files Browse the repository at this point in the history
  • Loading branch information
frullah committed Mar 27, 2021
1 parent b223256 commit 11905b3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
const colors = require('tailwindcss/colors')

module.exports = {
purge: [
'./src/components/**/*.svelte',
'./src/routes/**/*.svelte'
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {}
extend: {
colors: {
primary: colors.indigo
}
}
},
variants: {
extend: {}
Expand Down

0 comments on commit 11905b3

Please sign in to comment.