mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
* Sets custom colors for gold, bronze and silver in tailwind config for use on the profile badges. * Sets fill and text colors in template
28 lines
554 B
JavaScript
28 lines
554 B
JavaScript
module.exports = {
|
|
content: ["templates/**/*.html"],
|
|
darkMode: 'media',
|
|
theme: {
|
|
colors: {
|
|
'charcoal': '#172A34',
|
|
'orange': '#FF9F00',
|
|
'green': '#5AD599',
|
|
'black': '#051A26',
|
|
'slate': '#314A57',
|
|
'steel': '#B5C9D3',
|
|
'stone-white': '#DDE7EC',
|
|
'gold': '#F4CA1F',
|
|
'bronze': '#BB8A56',
|
|
'silver': '#B5C9D3',
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
cairo: "'Cairo', sans-serif",
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
};
|