16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
import colors from 'tailwindcss/colors'
|
|
|
|
export default {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
secondaryGreen: '#DDECEC',
|
|
primaryGreen: '#0D3F40',
|
|
primaryTextColor: '#383E43',
|
|
secondaryTextColor: '#878787',
|
|
footerGreen: '#D3EDED'
|
|
}
|
|
|
|
}
|
|
}
|
|
} |