aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: c0de8e9c5e4b46a88d9d62977096aad45a5dfe66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports = {
  content: ["./*/*.{html,js}"],
  theme: {
    extend: {
      colors: {
        background: '#131517',
        white: '#EEEEEE',
        graytwo: '#111017',
        bluetextnavbar: '#6086bf',
        blogheaderbackground: '#2f3238',
        datesearch: '#6a6980',
        bgsearch: '#1f1d29'
      },
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
  ],
}