mirror of
https://github.com/vitalityAI/office.git
synced 2025-04-09 14:00:17 -04:00
41 lines
804 B
JavaScript
41 lines
804 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{ts,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
navy: {
|
|
lightest: '#233C54',
|
|
light: '#112940',
|
|
DEFAULT: '#0A1D2F'
|
|
},
|
|
slate: {
|
|
lightest: '#CCE1F6',
|
|
light: '#A8BDD1',
|
|
DEFAULT: '#889CB0'
|
|
},
|
|
white: {
|
|
DEFAULT: '#E6F3FF',
|
|
},
|
|
blue: {
|
|
DEFAULT: '#66B3FF'
|
|
},
|
|
pink: {
|
|
DEFAULT: '#FF6687'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
borderColor: ['group-focus', 'group-focus-within'],
|
|
textColor: ['group-focus-within', 'placeholder-shown'],
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|