Skip to content

Commit c1c9baf

Browse files
committed
chore: Bump package version to 1.0.232 and refine color variables in styles
- Updated package version in package.json to 1.0.232 - Adjusted color variables in tailwind.css and Select component styles for improved design consistency
1 parent 99cb0c9 commit c1c9baf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@programmer_network/yail",
3-
"version": "1.0.231",
3+
"version": "1.0.232",
44
"description": "Programmer Network's official UI library for React",
55
"author": "Aleksandar Grbic - (https://programmer.network)",
66
"publishConfig": {

src/Components/Inputs/Select/styles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { CSSObjectWithLabel, OptionProps, StylesConfig } from "react-select";
33
import { Option } from "./types";
44

55
const text = "oklch(90% 0.05 80)";
6-
const background = "oklch(12% 0 80)";
6+
const background = "oklch(0.15 0 0)";
77
const border = "oklch(35% 0.03 80)";
88
const muted = "oklch(55% 0.07 80)";
99
const primary = "oklch(80% 0.2 80)";
10-
const secondary = "oklch(65% 0.1 120)";
10+
const secondary = "oklch(65% 0.2 80)";
1111
const error = "oklch(60% 0.22 30)";
1212
const accent = "oklch(75% 0.24 90)";
1313

src/tailwind.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
@theme {
1919
--color-primary: oklch(80% 0.2 80);
20-
--color-secondary: oklch(65% 0.1 120);
21-
--color-background: oklch(12% 0 80);
20+
--color-secondary: oklch(65% 0.2 80);
21+
--color-background: oklch(0.15 0 0);
2222
--color-text: oklch(90% 0.05 80);
2323
--color-border: oklch(35% 0.04 80);
2424
--color-muted: oklch(55% 0.07 80);

0 commit comments

Comments
 (0)