Files
tcad-bodeplot/tailwind.config.js
T

16 lines
302 B
JavaScript
Raw Normal View History

export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue,js}', './static/index.html'],
theme: {
extend: {
colors: {
dark: '#121212',
darker: '#0a0a0a',
primary: '#1f77b4',
secondary: '#ff7f0e',
},
},
},
plugins: [],
}