Files
osmfilter/tailwind.config.js
T
2024-05-26 16:29:15 +02:00

34 lines
813 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts}'],
theme: {
extend: {
colors: {
primary: '#154EC1',
secondary: '#767C88',
success: '#3D9209',
info: '#158DE3',
danger: '#E42222',
warning: '#FFD43A',
backgroundPrimary: '#f6f6f6',
backgroundSecondary: '#FFFFFF',
backgroundElement: '#ECF0F1',
backgroundBorder: '#DEE5F2',
textPrimary: '#262824',
textInverted: '#FFFFFF',
shadow: 'rgba(0, 0, 0, 0.12)',
focus: '#49A8FF',
transparent: 'rgba(0, 0, 0, 0)'
},
screens: {
xs: '0px',
sm: '640px',
md: '1024px',
lg: '1440px',
xl: '1920px'
}
}
},
plugins: []
};