mirror of
https://github.com/marcredhat/SIEM-toolkit-patched
synced 2026-06-09 21:07:15 +00:00
13 lines
204 B
JavaScript
13 lines
204 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: '#7c3aed',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|