mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
- Add missing font-family - Remove underline from links - Prevent "Join" word-break - Fix logo pixel shift on framed and non-framed docs - Remove navbar container's inline CSS height
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: ["templates/includes/_header.html", "templates/includes/_footer.html"],
|
|
darkMode: 'class',
|
|
theme: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
white: colors.white,
|
|
emerald: colors.emerald,
|
|
gray: colors.gray,
|
|
indigo: colors.indigo,
|
|
yellow: colors.yellow,
|
|
red: colors.red,
|
|
sky: colors.sky,
|
|
blue: colors.blue,
|
|
charcoal: '#172A34',
|
|
orange: '#FF9F00',
|
|
green: '#5AD599',
|
|
black: '#051A26',
|
|
slate: '#314A57',
|
|
steel: '#B5C9D3',
|
|
stone: '#DDE7EC',
|
|
'stone-white': '#DDE7EC',
|
|
gold: '#F4CA1F',
|
|
bronze: '#BB8A56',
|
|
silver: '#B5C9D3',
|
|
active: '#1565c0',
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
'sans': ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', '"Helvetica Neue"', 'sans-serif'],
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
};
|