diff --git a/frontend/app.config.ts b/frontend/app.config.ts new file mode 100644 index 0000000..a39d4f2 --- /dev/null +++ b/frontend/app.config.ts @@ -0,0 +1,10 @@ +export default defineAppConfig({ + nuxtIcon: { + size: '24px', // default size applied + class: 'icon', // default class applied + aliases: { + nuxt: 'logos:nuxt-icon', + loading: 'svg-spinners:90-ring-with-bg', + }, + }, +}) diff --git a/frontend/tailwind.config.ts b/frontend/tailwind.config.ts index f81b700..fe2f842 100644 --- a/frontend/tailwind.config.ts +++ b/frontend/tailwind.config.ts @@ -5,11 +5,11 @@ module.exports = { theme: { extend: { colors: { - primary: '#0c0c0d', - secondary: '#18181b', - darkgray: '#121213', + primary: '#000000', + secondary: '#0c0c0d', + darkgray: '#18181b', lightgray: '#27272a', - white: '#e5e7eb', + light: '#e5e7eb', }, }, },