forked from iterative/dvc.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (35 loc) · 995 Bytes
/
tailwind.config.js
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
27
28
29
30
31
32
33
34
35
36
const themeConfig = require('@dvcorg/gatsby-theme-iterative/tailwind.config')
module.exports = {
...themeConfig,
content: [
...themeConfig.content,
'./src/**/*.{js,jsx,ts,tsx}',
'./content/**/*.json'
],
theme: {
...themeConfig.theme,
extend: {
...themeConfig.theme.extend,
colors: {
gray: { hover: '#40364d', dark: 'rgb(26, 30, 35)' },
purple: { DEFAULT: '#945dd6' },
blue: { DEFAULT: 'rgb(56, 179, 220)' }
},
keyframes: {
slide: {
'0%': { transform: 'translate3d(0, 0, 0)' },
'100%': { transform: 'translate3d(-50.2%, 0, 0)' }
}
},
animation: {
slide: 'slide 80s linear infinite',
'slide-fast': 'slide 40s linear infinite'
}
},
fontFamily: {
...themeConfig.theme.fontFamily,
sans: ['BrandonGrotesque', 'Tahoma', 'Arial', 'sans-serif'],
mono: ['Consolas', '"Liberation Mono"', 'Menlo', 'Courier', 'monospace']
}
}
}