Update colors for combobox options
This commit is contained in:
parent
35309e220a
commit
b881ffa5b0
@ -287,7 +287,7 @@ export const CollectionActions = ({
|
|||||||
{showTokenIdListField && <TextInput className="mt-2" {...tokenIdListState} />}
|
{showTokenIdListField && <TextInput className="mt-2" {...tokenIdListState} />}
|
||||||
{showNumberOfTokensField && <NumberInput {...batchNumberState} />}
|
{showNumberOfTokensField && <NumberInput {...batchNumberState} />}
|
||||||
{showPriceField && <NumberInput {...priceState} />}
|
{showPriceField && <NumberInput {...priceState} />}
|
||||||
{showDescriptionField && <TextInput className="mb-2" {...descriptionState} />}
|
{showDescriptionField && <TextInput className="my-2" {...descriptionState} />}
|
||||||
{showImageField && <TextInput className="mb-2" {...imageState} />}
|
{showImageField && <TextInput className="mb-2" {...imageState} />}
|
||||||
{showExternalLinkField && <TextInput className="mb-2" {...externalLinkState} />}
|
{showExternalLinkField && <TextInput className="mb-2" {...externalLinkState} />}
|
||||||
{showRoyaltyRelatedFields && (
|
{showRoyaltyRelatedFields && (
|
||||||
|
@ -80,7 +80,7 @@ export const ActionsCombobox = ({ value, onChange, minterType }: ActionsCombobox
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -78,7 +78,7 @@ export const QueryCombobox = ({ value, onChange, minterType }: QueryComboboxProp
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -67,7 +67,7 @@ export const ExecuteCombobox = ({ value, onChange }: ExecuteComboboxProps) => {
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -67,7 +67,7 @@ export const ExecuteCombobox = ({ value, onChange }: ExecuteComboboxProps) => {
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -67,7 +67,7 @@ export const ExecuteCombobox = ({ value, onChange }: ExecuteComboboxProps) => {
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -67,7 +67,7 @@ export const ExecuteCombobox = ({ value, onChange }: ExecuteComboboxProps) => {
|
|||||||
<Combobox.Option
|
<Combobox.Option
|
||||||
key={entry.id}
|
key={entry.id}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-plumbus-70': active })
|
clsx('flex relative flex-col py-2 px-4 space-y-1 cursor-pointer', { 'bg-stargaze-80': active })
|
||||||
}
|
}
|
||||||
value={entry}
|
value={entry}
|
||||||
>
|
>
|
||||||
|
@ -12,7 +12,7 @@ module.exports = {
|
|||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
stargaze: { DEFAULT: '#DB2676' },
|
stargaze: { DEFAULT: '#DB2676', 80: '#C81F71' },
|
||||||
dark: { DEFAULT: '#06090B' },
|
dark: { DEFAULT: '#06090B' },
|
||||||
gray: { DEFAULT: '#A9A9A9' },
|
gray: { DEFAULT: '#A9A9A9' },
|
||||||
'dark-gray': { DEFAULT: '#191D20' },
|
'dark-gray': { DEFAULT: '#191D20' },
|
||||||
|
Loading…
Reference in New Issue
Block a user