Skip to content

Commit

Permalink
Fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
codicocodes committed Jan 14, 2024
1 parent 23e58d9 commit faa6b23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
}

.bg-gradient-neovim {
background-image: linear-gradient(to right, theme('colors.cyan.600'), theme('colors.green.600'));
background-image: linear-gradient(to right, theme('colors.cyan.500'), theme('colors.green.500'));
}

.bg-gradient-gruvbox {
background-image: linear-gradient(to right, theme('colors.red.600'), theme('colors.orange.600'));
background-image: linear-gradient(to right, theme('colors.red.500'), theme('colors.orange.500'));
}

.bg-gradient-tokyonight {
background-image: linear-gradient(to right, theme('colors.purple.600'), theme('colors.blue.600'));
background-image: linear-gradient(to right, theme('colors.purple.500'), theme('colors.blue.500'));
}
.bg-gradient-rose-pine {
background-image: linear-gradient(to right, theme('colors.pink.600'), theme('colors.amber.600'));
background-image: linear-gradient(to right, theme('colors.pink.500'), theme('colors.amber.500'));
}
}

Expand Down

0 comments on commit faa6b23

Please sign in to comment.