21 lines
414 B
JavaScript
21 lines
414 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/web/templates/**/*.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'brand': {
|
|
'bg': '#3d4848',
|
|
'bg-light': '#4a5858',
|
|
'bg-dark': '#2d3838',
|
|
'highlight': '#ffc700',
|
|
'highlight-dark': '#e6b300',
|
|
},
|
|
'linkedin': '#0A66C2',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|