move files, fix text colors
This commit is contained in:
parent
89c487c2b0
commit
1fd31497eb
@ -89,7 +89,7 @@ const buttonActionVariants = {
|
||||
--button-border: solid var(--border-width) var(--color-border);
|
||||
`,
|
||||
[ButtonAction.Primary]: css`
|
||||
--button-textColor: var(--color-text-0);
|
||||
--button-textColor: var(--color-text-2);
|
||||
--button-backgroundColor: var(--color-accent);
|
||||
--button-border: solid var(--border-width) var(--color-border-white);
|
||||
`,
|
||||
@ -107,7 +107,7 @@ const buttonActionVariants = {
|
||||
`,
|
||||
|
||||
[ButtonAction.Destroy]: css`
|
||||
--button-textColor: var(--color-text-0);
|
||||
--button-textColor: var(--color-text-2);
|
||||
--button-backgroundColor: var(--color-negative);
|
||||
--button-border: solid var(--border-width) var(--color-border-white);
|
||||
`,
|
||||
|
||||
@ -12,12 +12,12 @@ export const GlobalStyle = createGlobalStyle`
|
||||
--color-layer-7: ${({ theme }) => theme.layer7};
|
||||
|
||||
--color-border: ${({ theme }) => theme.borderDefault};
|
||||
--color-border-white: ${({ theme }) => theme.borderButton}; //xcxc
|
||||
--color-border-red: ${({ theme }) => theme.borderDestructive}; //xcxc
|
||||
--color-border-white: ${({ theme }) => theme.borderButton};
|
||||
--color-border-red: ${({ theme }) => theme.borderDestructive};
|
||||
|
||||
--color-text-0: ${({ theme }) => theme.textPrimary}; //xcxc
|
||||
--color-text-1: ${({ theme }) => theme.textSecondary}; //xcxc
|
||||
--color-text-2: ${({ theme }) => theme.textTertiary}; //xcxc
|
||||
--color-text-0: ${({ theme }) => theme.textTertiary};
|
||||
--color-text-1: ${({ theme }) => theme.textSecondary};
|
||||
--color-text-2: ${({ theme }) => theme.textPrimary};
|
||||
|
||||
--color-accent: ${({ theme }) => theme.accent};
|
||||
--color-favorite: ${({ theme }) => theme.favorite};
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { AppTheme } from '@/state/configs';
|
||||
import { ThemeColors } from '@/styles/colors/colors';
|
||||
import { ColorToken } from '@/styles/colors/base';
|
||||
import { ThemeColors } from '@/constants/styles/colors';
|
||||
import { ColorToken } from '@/constants/styles/base';
|
||||
|
||||
const ClassicTheme: ThemeColors = {
|
||||
layer0: ColorToken.GrayBlue7,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user