Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tailwind.config.js « css « assets - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfb9473f697b803dc482fcf125bae416c3d0c624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
  important: true,
  theme: {
    extend: {
      inset: {
        '16': '4rem',
      },
      colors: {
        primary: 'var(--color-primary)',
        secondary: 'var(--color-secondary)',
        tertiary: 'var(--color-tertiary)',
      }
    }
  },
  variants: {},
  plugins: []
}