Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Mar 27, 2024
1 parent d4fed0d commit 783ed18
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import defaultTheme from 'tailwindcss/defaultTheme'
import forms from '@tailwindcss/forms'
import colors from 'tailwindcss/colors'

/** @type {import('tailwindcss').Config} */
export default {
Expand All @@ -16,13 +17,32 @@ export default {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: '#14b8a6',
primaryOpacity: '#99f6e4',
}
primary: {
50: colors.teal[50],
100: colors.teal[100],
200: colors.teal[200],
300: colors.teal[300],
400: colors.teal[400],
500: colors.teal[500],
600: colors.teal[600],
700: colors.teal[700],
800: colors.teal[800],
900: colors.teal[900],
},
secondary: {
100: colors.gray[100],
200: colors.gray[200],
300: colors.gray[300],
400: colors.gray[400],
500: colors.gray[500],
600: colors.gray[600],
700: colors.gray[700],
800: colors.gray[800],
900: colors.gray[900],
},
},
},
},

plugins: [
forms,
],
};
plugins: [forms],
}

0 comments on commit 783ed18

Please sign in to comment.