Initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
/** @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: []
|
||||
};
|
||||
Reference in New Issue
Block a user