Use indigo for headings instead of green

This commit is contained in:
Austin Chen 2021-12-10 16:49:35 -08:00
parent 0de7c67fcb
commit 5457cb39b3
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ function ContractCard(props: { contract: Contract }) {
<a className="block hover:bg-gray-300">
<div className="px-4 py-4 sm:px-6">
<div className="flex items-center justify-between">
<p className="text-sm font-medium text-green-700 truncate">
<p className="text-sm font-medium text-indigo-700 truncate">
{contract.question}
</p>
<div className="ml-2 flex-shrink-0 flex">

View File

@ -46,7 +46,7 @@ export default function Account() {
</div>
</div>
<h1 className="text-2xl font-major-mono text-green-700 font-bold mt-6 mb-4">
<h1 className="text-2xl font-major-mono text-indigo-700 font-bold mt-6 mb-4">
Your markets
</h1>
<ContractsList contracts={contracts} />

View File

@ -55,7 +55,7 @@ export default function NewContract() {
<div>
<Header />
<div className="max-w-4xl py-12 lg:mx-auto px-4">
<h1 className="text-2xl font-major-mono text-green-700 font-bold my-6">
<h1 className="text-2xl font-major-mono text-indigo-700 font-bold my-6">
Create a new prediction market
</h1>
<div className="w-full bg-gray-200 rounded-lg shadow-xl p-6">
@ -176,7 +176,7 @@ export default function NewContract() {
<Spacer h={10} />
{/* Show a separate card for each contract */}
<h1 className="text-2xl font-major-mono text-green-700 font-bold my-6">
<h1 className="text-2xl font-major-mono text-indigo-700 font-bold my-6">
Your markets
</h1>