Skip to content

Commit

Permalink
less gradient (#2085)
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Jun 28, 2024
1 parent 8733880 commit 8a7aede
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion website/src/components/Navigation/OrganismSelector.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const restOfUrl = Astro.url.pathname.split('/').slice(2).join('/');
---

<div class='dropdown dropdown-hover flex relative'>
<label tabindex='0' class='py-1 block text-gray-900 cursor-pointer'>
<label tabindex='0' class='py-1 block text-primary-1500 cursor-pointer'>
{label}
<span class='text-primary'> <IwwaArrowDown className='inline-block -mt-1 ml-1 h-4 w-4 ' /></span>
</label>
Expand All @@ -31,6 +31,7 @@ const restOfUrl = Astro.url.pathname.split('/').slice(2).join('/');
? `/${knownOrganism.key}/${restOfUrl}`
: routes.organismStartPage(knownOrganism.key)
}
class='text-primary-1500 '
>
{knownOrganism.displayName}
</a>
Expand Down
3 changes: 2 additions & 1 deletion website/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const mainTailwindColor = {
800: '#185574',
900: '#194761',
950: '#112d40',
1500: '#25506e',
};

module.exports = {
Expand All @@ -22,7 +23,7 @@ module.exports = {
extend: {
colors: {
primary: { ...mainTailwindColor, DEFAULT: mainTailwindColor[400] },
logoSecondary: '#f3b502',
logoSecondary: mainTailwindColor[600],
main: mainTailwindColor[600],
},
},
Expand Down

0 comments on commit 8a7aede

Please sign in to comment.