Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added new dsign sys colors #1860

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/block/[hash]/PageClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export default function BlockPage({ params: { hash } }: any) {
return (
<>
<PageTitle>{title}</PageTitle>
<Text color="accent.bitcoin-700">{title}</Text>
<TowColLayout>
<Section title="Summary">
<KeyValueHorizontal label={'Hash'} value={<Value>{hash}</Value>} copyValue={hash} />
Expand Down
85 changes: 85 additions & 0 deletions src/stories/Colors.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
import { Box } from '@/ui/Box';
import { Flex } from '@/ui/Flex';
import { Heading } from '@/ui/Heading';
import { Stack } from '@/ui/Stack';
import { Text } from '@/ui/Text';

Check warning on line 5 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L1-L5

Added lines #L1 - L5 were not covered by tests
import type { Meta, StoryObj } from '@storybook/react';

import { NEW_COLORS } from '../ui/theme/new-colors';

Check warning on line 8 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L8

Added line #L8 was not covered by tests

const ColorSwatch = ({
title,
colorName,
colorValue,
}: {
title: string;
colorName: string;
colorValue: string;
}) => (
<Stack align="start" spacing={1}>
<Box
w="100px"
h="100px"
bg={`${title}.${colorName}`}
borderRadius="md"
border="1px solid black"
/>
<Text fontSize="sm" fontWeight="bold">
{colorName}
</Text>
<Text fontSize="xs">{colorValue}</Text>
</Stack>
);

const ColorSection = ({ title, colors }: { title: string; colors: Record<string, string> }) => (
<Box mb={8}>
<Heading size="md" mb={4}>
{title}
</Heading>
<Flex gap={4} flexWrap="wrap">
{Object.entries(colors).map(([name, value]) => (
<ColorSwatch key={name} title={title} colorName={name} colorValue={value} />

Check warning on line 41 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L41

Added line #L41 was not covered by tests
))}
</Flex>
</Box>
);

const ColorPalette = () => (
<Stack align="stretch" spacing={8}>
{Object.entries(NEW_COLORS).map(([section, colors]) => (
<ColorSection key={section} title={section} colors={colors} />

Check warning on line 50 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L50

Added line #L50 was not covered by tests
))}
</Stack>
);

const meta = {

Check warning on line 55 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L55

Added line #L55 was not covered by tests
title: 'Theme/Colors',
component: ColorPalette,
parameters: {
layout: 'padded',
docs: {
source: {
code: `
// Example ColorSwatch for bitcoin-700
const ColorSwatch = () => (
<Stack align="start" spacing={1}>
<Box w="100px" h="100px" bg='accent.bitcoin-700' borderRadius="md" border="1px solid black" />
<Text fontSize="sm" fontWeight="bold">
bitcoin-700
</Text>
<Text fontSize="xs">#FF8B00</Text>
</Stack>
);
`,
language: 'tsx',
type: 'auto',
},
},
},
tags: ['autodocs'],
} satisfies Meta<typeof ColorPalette>;

export default meta;

Check warning on line 82 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L82

Added line #L82 was not covered by tests
type Story = StoryObj<typeof meta>;

export const AllColors: Story = {};

Check warning on line 85 in src/stories/Colors.stories.tsx

View check run for this annotation

Codecov / codecov/patch

src/stories/Colors.stories.tsx#L85

Added line #L85 was not covered by tests
83 changes: 83 additions & 0 deletions src/ui/theme/new-colors.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
export const NEW_COLORS = {
BLuEScioN marked this conversation as resolved.
Show resolved Hide resolved
neutral: {
white: '#ffffff',
'sand-50': '#f7f6f5',
'sand-100': '#f3f2f0',
'sand-150': '#eae8e6',
'sand-200': '#d5d3d1',
'sand-300': '#bfbdba',
'sand-400': '#95918c',
'sand-500': '#777470',
'sand-600': '#595754',
'sand-700': '#3c3a38',
'sand-800': '#2d2c2a',
'sand-900': '#211f1f',
'sand-950': '#181716',
'sand-1000': '#0f0f0e',
black: '#000000',
},
accent: {
'stacks-100': '#FFDFD1',
'stacks-200': '#FFC2A8',
'stacks-300': '#FFA57F',
'stacks-400': '#FF8761',
'stacks-500': '#FC6432',
'stacks-600': '#CC4900',
'stacks-700': '#9C310D',
'bitcoin-100': '#FFDFC1',
'bitcoin-200': '#FFD1A7',
'bitcoin-300': '#FFC288',
'bitcoin-400': '#FFAD65',
'bitcoin-500': '#FF9835',
'bitcoin-600': '#E17C18',
'bitcoin-700': '#FF8B00',
'testnet-100': '#E7E5FF',
'testnet-200': '#DDD9FF',
'testnet-300': '#BBADFF',
'testnet-400': '#9985FF',
'testnet-500': '#765BFF',
'testnet-600': '#593FE0',
},
contract: {
call: '#BDC2A6',
deploy: '#D4E523',
},
alpha: {
'sand-alpha-50': 'rgba(243, 242, 240, 0.04)',
'sand-alpha-100': 'rgba(243, 242, 240, 0.06)',
'sand-alpha-200': 'rgba(243, 242, 240, 0.08)',
'sand-alpha-300': 'rgba(243, 242, 240, 0.16)',
'sand-alpha-400': 'rgba(243, 242, 240, 0.24)',
'sand-alpha-500': 'rgba(243, 242, 240, 0.36)',
'sand-alpha-600': 'rgba(243, 242, 240, 0.48)',
'sand-alpha-700': 'rgba(243, 242, 240, 0.64)',
'sand-alpha-800': 'rgba(243, 242, 240, 0.80)',
'sand-alpha-900': 'rgba(243, 242, 240, 0.92)',
},
status: {
'green-100': '#0070dd',
'green-200': '#adddc0',
'green-300': '#8ECEAA',
'green-400': '#5bb98b',
'green-500': '#30a46c',
'green-600': '#218358',
'blue-100': '#e9f3ff',
'blue-200': '#dbecff',
'blue-300': '#b5d5ff',
'blue-400': '#75acf3',
'blue-500': '#2c8dff',
'blue-600': '#0070dd',
'red-100': '#ffe9e9',
'red-200': '#ffcaca',
'red-300': '#ff9da0',
'red-400': '#f06e76',
'red-500': '#e32a35',
'red-600': '#b01425',
'yellow-100': '#fefce9',
'yellow-200': '#fff9b7',
'yellow-300': '#fff394',
'yellow-400': '#f9e972',
'yellow-500': '#f3dc00',
'yellow-600': '#dbc600',
},
};
3 changes: 2 additions & 1 deletion src/ui/theme/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ import { switchTheme } from './componentTheme/Switch';
import { tabTheme } from './componentTheme/Tab';
import { tagTheme } from './componentTheme/Tag';
import { inter, openSauce } from './fonts';
import { NEW_COLORS } from './new-colors';

export const theme = extendTheme({
config: {
initialColorMode: 'light',
useSystemColorMode: false,
cssVarPrefix: 'stacks',
},
colors: COLORS,
colors: { ...COLORS, ...NEW_COLORS },
semanticTokens: {
colors: {
brand: '#FC6432',
Expand Down
Loading