Skip to content

Commit

Permalink
add new colors to tailwind theme
Browse files Browse the repository at this point in the history
Co-authored-by: LuaanNguyen <[email protected]>
  • Loading branch information
benjuntilla and LuaanNguyen committed Jun 16, 2024
1 parent b133dd6 commit bdd70db
Showing 1 changed file with 79 additions and 9 deletions.
88 changes: 79 additions & 9 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,86 @@ export default {
"blue-light": "#E5ECF4",
"green-light": "#EFFFFA",
},
fontFamily: {
apfel: ["Apfel", "sans-serif"],
"apfel-brukt": ["Apfel-Brukt", "sans-serif"],
"apfel-fett": ["Apfel-Fett", "sans-serif"],
"apfel-regular": ["Apfel-Regular", "sans-serif"],
"array-regular": ["Array-Regular", "sans-serif"],
"array-semibold": ["Array-Semibold", "sans-serif"],
"array-semibold-wide": ["Array-SemiboldWide", "sans-serif"],
"array-bold": ["Array-Bold", "sans-serif"],
"soda-blue": {
"900": "oklch(55% 0.2 266)",
"775": "oklch(55% 0.2 266)",
"675": "oklch(55% 0.2 266)",
"550": "oklch(55% 0.2 266)",
"450": "oklch(55% 0.2 266)",
"325": "oklch(55% 0.2 266)",
"225": "oklch(55% 0.2 266)",
"100": "oklch(55% 0.2 266)"
},
"soda-red": {
"900": "oklch(55% 0.2 12)",
"775": "oklch(55% 0.2 12)",
"675": "oklch(55% 0.2 12)",
"550": "oklch(55% 0.2 12)",
"450": "oklch(55% 0.2 12)",
"325": "oklch(55% 0.2 12)",
"225": "oklch(55% 0.2 12)",
"100": "oklch(55% 0.2 12)"
},
"surface": {
"900": "oklch(13.85% 0.0019 196.94)",
"775": "oklch(21.5% 0.001 196.94)",
"675": "oklch(33% 0.003 196.94)",
"550": "oklch(44.5% 0.004 196.94)",
"450": "oklch(55.5% 0.006 196.94)",
"325": "oklch(67% 0.005 196.94)",
"225": "oklch(78.5% 0.006 196.94)",
"100": "oklch(90% 0.006 196.94)"
},
"success": {
"900": "oklch(82.56% 0.1805 124.75)",
"775": "oklch(82.56% 0.1805 124.75)",
"675": "oklch(82.56% 0.1805 124.75)",
"550": "oklch(82.56% 0.1805 124.75)",
"450": "oklch(82.56% 0.1805 124.75)",
"325": "oklch(82.56% 0.1805 124.75)",
"225": "oklch(82.56% 0.1805 124.75)",
"100": "oklch(82.56% 0.1805 124.75)"
},
"caution": {
"900": "oklch(78.5% 0.148 90.52)",
"775": "oklch(78.5% 0.148 90.52)",
"675": "oklch(78.5% 0.148 90.52)",
"550": "oklch(78.5% 0.148 90.52)",
"450": "oklch(78.5% 0.148 90.52)",
"325": "oklch(78.5% 0.148 90.52)",
"225": "oklch(78.5% 0.148 90.52)",
"100": "oklch(78.5% 0.148 90.52)"
},
"danger": {
"900": "oklch(62.74% 0.2425 16.82)",
"775": "oklch(62.74% 0.2425 16.82)",
"675": "oklch(62.74% 0.2425 16.82)",
"550": "oklch(62.74% 0.2425 16.82)",
"450": "oklch(62.74% 0.2425 16.82)",
"325": "oklch(62.74% 0.2425 16.82)",
"225": "oklch(62.74% 0.2425 16.82)",
"100": "oklch(62.74% 0.2425 16.82)"
},
"info": {
"900": "oklch(63.28% 0.1249 231.85)",
"775": "oklch(63.28% 0.1249 231.85)",
"675": "oklch(63.28% 0.1249 231.85)",
"550": "oklch(63.28% 0.1249 231.85)",
"450": "oklch(63.28% 0.1249 231.85)",
"325": "oklch(63.28% 0.1249 231.85)",
"225": "oklch(63.28% 0.1249 231.85)",
"100": "oklch(63.28% 0.1249 231.85)"
}
},
fontFamily: {
apfel: ["Apfel", "sans-serif"],
"apfel-brukt": ["Apfel-Brukt", "sans-serif"],
"apfel-fett": ["Apfel-Fett", "sans-serif"],
"apfel-regular": ["Apfel-Regular", "sans-serif"],
"array-regular": ["Array-Regular", "sans-serif"],
"array-semibold": ["Array-Semibold", "sans-serif"],
"array-semibold-wide": ["Array-SemiboldWide", "sans-serif"],
"array-bold": ["Array-Bold", "sans-serif"],
},
},
plugins: [require('daisyui')],
Expand Down

0 comments on commit bdd70db

Please sign in to comment.