aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/assets/tailwind.config.js
blob: 395651bd3cddaad602c45f4e15aa7c8097002280 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const colors = require('tailwindcss/colors')

module.exports = {
   content: [
     './app.css',
     './app.js',
     '../templates/*.dtl',
     '../src/**/*.erl'
   ],
  theme: {
    extend: {
      colors: {
        primary: colors.rose,
        secondary: colors.stone,
        gray: colors.stone,
        green: colors.emerald,
        yellow: colors.amber,
        purple: colors.violet,
        red: colors.rose,
      }
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
  ],
 }