mirror of
https://github.com/tlsnotary/explorer.git
synced 2026-01-08 04:23:52 -05:00
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./web/**/*.{js,jsx,ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#243f5f',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|