Skip to content

Commit

Permalink
update style
Browse files Browse the repository at this point in the history
  • Loading branch information
anig1scur committed Jan 14, 2025
1 parent c531c5e commit 3106d4c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const BASE = import.meta.env.VITE_BASE;
const generateMonths = () => {
const months = [];
const currentDate = new Date();
const endDate = new Date(2024, 6);
const endDate = new Date(2024, 12);

while (currentDate >= endDate) {
months.push(currentDate.toISOString().slice(0, 7));
Expand Down
14 changes: 10 additions & 4 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@ module.exports = {
'xs': '480px',
'xxs': '360px',
},
// colors: {
// 'bg': '#faf5f1',
// 'bg-secondary': '#eadbce',
// 'card-bg': '#997164',
// 'text': '#483c38'
// },
colors: {
'bg': '#faf5f1',
'bg-secondary': '#eadbce',
'card-bg': '#997164',
'text': '#483c38'
'bg': '#f8f8f8',
'bg-secondary': '#e0e0e0',
'card-bg': '#3a3a3a',
'text': '#2a2a2a'
},
},
},
Expand Down

0 comments on commit 3106d4c

Please sign in to comment.