forked from tlamedia/gtm-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (33 loc) · 920 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
/**
* GTM Kit
*
* @package
*/
// eslint-disable-next-line
/** @type {import('tailwindcss').Config} */ // phpcs:ignore
module.exports = {
content: [
'./src/**/*.js',
'../gtm-kit-settings/src/**/*.js',
'./src/**/*.php',
],
theme: {
extend: {
colors: {
'color-primary': 'var(--gtmkit-color-primary)',
'color-secondary': 'var(--gtmkit--color--secondary)',
'color-button': 'var(--gtmkit--color--button)',
'color-border': 'var(--gtmkit-border-color)',
'color-heading': 'var(--gtmkit-text-color-heading)',
'color-grey': 'var(--gtmkit-color-grey)',
'color-button-disabled': 'var(--gtmkit-button-disabled)',
'color-background-disabled': 'var(--gtmkit-button-disabled-bg)',
'color-success': 'var(--gtmkit-color-success)',
'color-warning': 'var(--gtmkit-color-warning)',
'color-error': 'var(--gtmkit-color-error)',
},
},
},
plugins: [],
prefix: 'gtmkit-',
};