mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 20:42:15 +00:00
13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
import { defineConfig } from 'windicss/helpers';
|
|
|
|
export default defineConfig({
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
sspsBlue: '#406280',
|
|
sspsBlueDark: '#243a55',
|
|
sspsGray: '#e6e6e6'
|
|
}
|
|
}
|
|
}
|
|
});
|