Skip to content

Commit 99cb0c9

Browse files
committed
chore: Bump package version to 1.0.231 and update color variables in styles
- Updated package version in package.json to 1.0.231 - Modified color variables in tailwind.css and Select component styles for improved design consistency
1 parent 1bc2f73 commit 99cb0c9

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
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.230",
3+
"version": "1.0.231",
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { CSSObjectWithLabel, OptionProps, StylesConfig } from "react-select";
22

33
import { Option } from "./types";
44

5-
const text = "oklch(85% 0.02 240)";
6-
const background = "oklch(14.48% 0 0)";
7-
const border = "oklch(30% 0.02 240)";
8-
const muted = "oklch(50% 0.05 240)";
9-
const primary = "oklch(64.94% 0.1982 251.813)";
10-
const secondary = "oklch(65% 0.05 270)";
11-
const error = "oklch(60% 0.2 30)";
12-
const accent = "oklch(60% 0.2 250)";
5+
const text = "oklch(90% 0.05 80)";
6+
const background = "oklch(12% 0 80)";
7+
const border = "oklch(35% 0.03 80)";
8+
const muted = "oklch(55% 0.07 80)";
9+
const primary = "oklch(80% 0.2 80)";
10+
const secondary = "oklch(65% 0.1 120)";
11+
const error = "oklch(60% 0.22 30)";
12+
const accent = "oklch(75% 0.24 90)";
1313

1414
export const styles: StylesConfig<Option | undefined, false | true> = {
1515
input: (base: CSSObjectWithLabel) => ({

src/tailwind.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
}
1717

1818
@theme {
19-
--color-primary: oklch(64.94% 0.1982 251.813); /* Electric violet-blue */
20-
--color-secondary: oklch(65% 0.05 270); /* Subtle lavender-blue */
21-
--color-background: oklch(14.48% 0 0); /* Near black */
22-
--color-text: oklch(85% 0.02 240); /* Soft white-blue */
23-
--color-border: oklch(30% 0.02 240); /* Subtle border */
24-
--color-muted: oklch(50% 0.05 240); /* Muted bluish-gray */
25-
--color-accent: oklch(60% 0.2 250); /* Neon blue accent */
26-
--color-accent-hover: oklch(50% 0.2 250); /* Dimmed neon on hover */
27-
--color-success: oklch(70% 0.2 140); /* Vivid green */
28-
--color-warning: oklch(80% 0.2 80); /* Bright orange-yellow */
29-
--color-error: oklch(60% 0.2 30); /* Bold red */
30-
--color-info: oklch(60% 0.2 250); /* Bright informative blue */
19+
--color-primary: oklch(80% 0.2 80);
20+
--color-secondary: oklch(65% 0.1 120);
21+
--color-background: oklch(12% 0 80);
22+
--color-text: oklch(90% 0.05 80);
23+
--color-border: oklch(35% 0.04 80);
24+
--color-muted: oklch(55% 0.07 80);
25+
--color-accent: oklch(75% 0.24 90);
26+
--color-accent-hover: oklch(65% 0.24 90);
27+
--color-success: oklch(70% 0.25 140);
28+
--color-warning: oklch(85% 0.24 80);
29+
--color-error: oklch(60% 0.22 30);
30+
--color-info: oklch(70% 0.2 200);
3131

3232
--animate-height-animation: height-animation 100ms
3333
cubic-bezier(0.3, 0.31, 0.59, 0.7);

0 commit comments

Comments
 (0)