Skip to content

Commit

Permalink
chore: debugging missing tailwind prefix on screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Holloway authored and Matthew Holloway committed Oct 2, 2024
1 parent bb3f882 commit 41dea5d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
fontFamily: {
sans: '"Inter", sans-serif'
},
colors: {
blue: {
100: '#50B2DF',
200: '#0B8CC5',
300: '#1C62B6',
400: '#18539B',
900: '#002D3C',
950: '#00101C'
},
yellow: {
400: '#FFD13E',
750: '#A78201'
}
}
}
}
}

0 comments on commit 41dea5d

Please sign in to comment.