forked from walt-id/waltid-web-wallet-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (43 loc) · 1.1 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
theme: {
extend: {
fontFamily: {
sans: ['PF Square Sans Pro', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: '#3069FE',
dark: '#282828',
light: '#F2F2F2',
'gray-base': '#938E8E',
'gray-dark': '#5C5B5B',
'gray-light': '#C4C4C4',
},
transitionProperty: {
backdrop: 'visibility, opacity, transform',
},
screens: {
lg1: { raw: '(max-width: 1170px)' },
'md-h': { raw: '(max-height: 970px)' },
},
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled'],
border: ['last', 'first'],
transform: ['hover', 'focus'],
rotate: ['active', 'group-hover'],
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
}