move files, fix text colors

This commit is contained in:
mulan xia 2024-01-23 15:21:34 -05:00
parent 89c487c2b0
commit 1fd31497eb
No known key found for this signature in database
GPG Key ID: C6CE526613568D73
5 changed files with 9 additions and 9 deletions

View File

@ -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);
`,

View File

@ -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};

View File

@ -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,