27 lines
579 B
JavaScript
27 lines
579 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
"./components/**/*.{js,vue,ts}",
|
||
|
|
"./layouts/**/*.vue",
|
||
|
|
"./pages/**/*.vue",
|
||
|
|
"./plugins/**/*.{js,ts}",
|
||
|
|
"./app.vue",
|
||
|
|
"./error.vue"
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
'aws-orange': '#FF9900',
|
||
|
|
'aws-blue': '#232F3E',
|
||
|
|
'aws-light-blue': '#146EB4',
|
||
|
|
'aws-gray': '#F2F3F3',
|
||
|
|
'aws-dark-gray': '#545B64'
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
'sans': ['Amazon Ember', 'Helvetica Neue', 'Arial', 'sans-serif']
|
||
|
|
}
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|