Skip to content

Commit 7d40b58

Browse files
committed
feat: Rename ht-300 color to ht-900 .
1 parent 338f979 commit 7d40b58

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/assets/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ code {
2727
@theme {
2828
--color-ht-100: oklch(0.9 0.0221 250.23);
2929
--color-ht-200: oklch(0.83 0.0314 249.73);
30-
--color-ht-300: oklch(0.453 0.0179 251.34);
30+
--color-ht-900: oklch(0.453 0.0179 251.34);
3131
}
3232

3333
@layer base {
3434
@variant dark {
3535
--color-ht-100: oklch(0.2421 0.0129 258.37);
3636
--color-ht-200: oklch(0.2245 0.0115 254.07);
37-
--color-ht-300: oklch(1 0 0);
37+
--color-ht-900: oklch(1 0 0);
3838
}
3939
}

src/components/Elements/Button/Button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ const sizes = {
1010

1111
const types = {
1212
primary: 'bg-blue-500 text-white hover:bg-blue-600',
13-
secondary: 'bg-ht-100 text-ht-300 hover:bg-ht-200',
13+
secondary: 'bg-ht-100 text-ht-900 hover:bg-ht-200',
1414
danger: 'bg-danger text-on-danger ',
1515
success: 'bg-green-500 text-white hover:bg-green-600',
1616
warning: 'bg-yellow-400 text-white hover:bg-yellow-500',
17-
text: 'bg-transparent text-ht-300',
17+
text: 'bg-transparent text-ht-900',
1818
}
1919

2020
interface ButtonProps {

src/components/Elements/Button/CircleButton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ const sizes = {
99

1010
const variants = {
1111
primary: 'bg-blue-500 text-white hover:bg-blue-600',
12-
secondary: 'bg-ht-100 text-ht-300 hover:bg-ht-200',
13-
outlined: 'bg-ht-100 text-ht-300 hover:bg-ht-100',
14-
text: 'bg-transparent ttext-ht-300',
12+
secondary: 'bg-ht-100 text-ht-900 hover:bg-ht-200',
13+
outlined: 'bg-ht-100 text-ht-900 hover:bg-ht-100',
14+
text: 'bg-transparent ttext-ht-900',
1515
darkfocus: 'bg-blue-900 text-yellow-400 hover:opacity-80',
1616
}
1717

0 commit comments

Comments
 (0)