75 lines
2.9 KiB
JavaScript
75 lines
2.9 KiB
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: ['./index.html', './js/**/*.js'],
|
||
|
|
darkMode: 'class',
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
'tertiary-fixed': '#dbdafb',
|
||
|
|
'surface-dim': '#cfdce3',
|
||
|
|
'primary-dim': '#2d5387',
|
||
|
|
'secondary-container': '#d5e3fc',
|
||
|
|
'surface-container-lowest': '#ffffff',
|
||
|
|
'on-surface': '#2a3439',
|
||
|
|
'surface-container-highest': '#d9e4ea',
|
||
|
|
'error-container': '#fe8983',
|
||
|
|
'on-primary-container': '#2c5287',
|
||
|
|
'tertiary': '#5d5d78',
|
||
|
|
'secondary-dim': '#465468',
|
||
|
|
'on-error-container': '#752121',
|
||
|
|
'on-tertiary': '#fbf7ff',
|
||
|
|
'surface-container-low': '#f0f4f7',
|
||
|
|
'tertiary-container': '#dbdafb',
|
||
|
|
'on-primary-fixed-variant': '#375c91',
|
||
|
|
'primary-container': '#d5e3ff',
|
||
|
|
'on-primary-fixed': '#153f73',
|
||
|
|
'on-tertiary-container': '#4c4c67',
|
||
|
|
'secondary-fixed-dim': '#c7d5ed',
|
||
|
|
'on-secondary-fixed': '#324053',
|
||
|
|
'on-background': '#2a3439',
|
||
|
|
'on-surface-variant': '#566166',
|
||
|
|
'primary': '#3a5f94',
|
||
|
|
'surface-container': '#e8eff3',
|
||
|
|
'surface': '#f7f9fb',
|
||
|
|
'primary-fixed': '#d5e3ff',
|
||
|
|
'on-error': '#fff7f6',
|
||
|
|
'inverse-on-surface': '#9a9d9f',
|
||
|
|
'tertiary-fixed-dim': '#cdccec',
|
||
|
|
'tertiary-dim': '#51516c',
|
||
|
|
'surface-bright': '#f7f9fb',
|
||
|
|
'background': '#f7f9fb',
|
||
|
|
'secondary-fixed': '#d5e3fc',
|
||
|
|
'surface-tint': '#3a5f94',
|
||
|
|
'on-secondary-fixed-variant': '#4e5c71',
|
||
|
|
'outline-variant': '#a9b4b9',
|
||
|
|
'inverse-primary': '#9fc2fe',
|
||
|
|
'inverse-surface': '#0b0f10',
|
||
|
|
'on-tertiary-fixed': '#393953',
|
||
|
|
'on-tertiary-fixed-variant': '#555571',
|
||
|
|
'surface-container-high': '#e1e9ee',
|
||
|
|
'error-dim': '#4e0309',
|
||
|
|
'surface-variant': '#d9e4ea',
|
||
|
|
'on-primary': '#f6f7ff',
|
||
|
|
'on-secondary': '#f8f8ff',
|
||
|
|
'outline': '#717c82',
|
||
|
|
'on-secondary-container': '#455367',
|
||
|
|
'error': '#9f403d',
|
||
|
|
'secondary': '#526074',
|
||
|
|
'primary-fixed-dim': '#bfd5ff',
|
||
|
|
},
|
||
|
|
borderRadius: {
|
||
|
|
DEFAULT: '0.125rem',
|
||
|
|
lg: '0.25rem',
|
||
|
|
xl: '0.5rem',
|
||
|
|
full: '0.75rem',
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
headline: ['Manrope', 'sans-serif'],
|
||
|
|
body: ['Inter', 'sans-serif'],
|
||
|
|
label: ['Inter', 'sans-serif'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|