moved theme colors to tailwind config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Cloudyy 2024-01-22 23:50:23 -03:00
parent f29112f067
commit 09cca51eb8
Signed by: cloudyy
GPG key ID: 035104A645BAEADD

View file

@ -2,7 +2,75 @@
export default { export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: { theme: {
extend: {}, extend: {
colors: {
text: {
50: '#f1f3f3',
100: '#e4e7e7',
200: '#c9cfcf',
300: '#aeb7b7',
400: '#939f9f',
500: '#788787',
600: '#606c6c',
700: '#485151',
800: '#303636',
900: '#181b1b',
950: '#0c0e0e',
},
background: {
50: '#f1f4f4',
100: '#e3e8e8',
200: '#c7d1d1',
300: '#abbaba',
400: '#8fa3a3',
500: '#738c8c',
600: '#5c7070',
700: '#455454',
800: '#2e3838',
900: '#171c1c',
950: '#0b0e0e',
},
primary: {
50: '#ebf1fa',
100: '#d7e3f4',
200: '#afc7e9',
300: '#87abde',
400: '#5f8fd3',
500: '#3773c8',
600: '#2c5ca0',
700: '#214578',
800: '#162e50',
900: '#0b1728',
950: '#050c14',
},
secondary: {
50: '#eef7f6',
100: '#dcefed',
200: '#badedc',
300: '#97ceca',
400: '#74beb9',
500: '#52ada7',
600: '#418b86',
700: '#316864',
800: '#214543',
900: '#102321',
950: '#081111',
},
accent: {
50: '#edf8f4',
100: '#dbf0e9',
200: '#b6e2d3',
300: '#92d3bc',
400: '#6dc5a6',
500: '#49b690',
600: '#3a9273',
700: '#2c6d56',
800: '#1d493a',
900: '#0f241d',
950: '#07120e',
},
},
},
}, },
plugins: [require('daisyui')], plugins: [require('daisyui')],
daisyui: { daisyui: {