6 Commits

Author SHA1 Message Date
github-actions[bot]
5bf01c59b5 chore(release): bump version to v0.0.15 and update changelog [skip ci] 2026-02-22 17:58:39 +00:00
burakalmazlar
6ba8d8b7ce degisiklik
All checks were successful
Release and Build Docker Images / release-and-build (push) Successful in 1m59s
2026-02-22 20:58:29 +03:00
github-actions[bot]
5b0ea13ba0 chore(release): bump version to v0.0.14 and update changelog [skip ci] 2026-02-22 16:06:48 +00:00
almazlar
53cb84dd14 feat: replace rich cerulean color variables with a new color palette for improved theming
All checks were successful
Release and Build Docker Images / release-and-build (push) Successful in 1m51s
2026-02-22 19:06:37 +03:00
github-actions[bot]
649c9f8d69 chore(release): bump version to v0.0.13 and update changelog [skip ci] 2026-02-22 15:50:28 +00:00
almazlar
fe20a69482 feat: update button and input styles with new color variables and hover/focus states
All checks were successful
Release and Build Docker Images / release-and-build (push) Successful in 1m46s
2026-02-22 18:50:17 +03:00
3 changed files with 80 additions and 67 deletions

View File

@@ -1,3 +1,15 @@
## [v0.0.15] - 2026-02-22
* degisiklik (6ba8d8b)
## [v0.0.14] - 2026-02-22
* feat: replace rich cerulean color variables with a new color palette for improved theming (53cb84d)
## [v0.0.13] - 2026-02-22
* feat: update button and input styles with new color variables and hover/focus states (fe20a69)
## [v0.0.12] - 2026-02-22 ## [v0.0.12] - 2026-02-22
* feat: update CSS variables for improved theming and styling (24424cc) * feat: update CSS variables for improved theming and styling (24424cc)

View File

@@ -74,7 +74,7 @@ const TodoList = () => {
return ( return (
<div className="todo-wrapper"> <div className="todo-wrapper">
<h1 className="title">Tasks</h1> <h1 className="title">Tasks List</h1>
<form className="todo-form" onSubmit={handleCreate}> <form className="todo-form" onSubmit={handleCreate}>
<input <input

View File

@@ -1,73 +1,63 @@
/* Existing CSS rules */
:root { :root {
--rich-cerulean-50: #eaf4fb; --color1: #edf0f8;
--rich-cerulean-100: #d5eaf6; --color2: #dae1f1;
--rich-cerulean-200: #aad5ee; --color3: #b6c3e2;
--rich-cerulean-300: #80c0e5; --color4: #91a5d4;
--rich-cerulean-400: #56abdc; --color5: #6c87c6;
--rich-cerulean-500: #2b96d4; --color6: #4769b8;
--rich-cerulean-600: #2378a9; --color7: #395493;
--rich-cerulean-700: #1a5a7f; --color8: #2b3f6e;
--rich-cerulean-800: #113c55; --color9: #1d2a49;
--rich-cerulean-900: #091e2a; --color10: #0e1525;
--rich-cerulean-950: #06151e; --color11: #0a0f1a;
--sand-dune-50: #f7f5ed; --color12: #e8ebfc;
--sand-dune-100: #f0ebdb; --color13: #d1d7fa;
--sand-dune-200: #e1d6b7; --color14: #a3aff5;
--sand-dune-300: #d2c293; --color15: #7588f0;
--sand-dune-400: #c3ae6f; --color16: #4760eb;
--sand-dune-500: #b49a4b; --color17: #1938e6;
--sand-dune-600: #907b3c; --color18: #142db8;
--sand-dune-700: #6c5c2d; --color19: #0f228a;
--sand-dune-800: #483d1e; --color20: #0a165c;
--sand-dune-900: #241f0f; --color21: #050b2e;
--sand-dune-950: #19160b; --color22: #040820;
--color23: #02081c;
--alice-blue-50: #ecf3f8; --color24: #fff4e5;
--alice-blue-100: #dae7f1; --color25: #ffe9cc;
--alice-blue-200: #b4cfe4; --color26: #ffd399;
--alice-blue-300: #8fb7d6; --color27: #ffbd66;
--alice-blue-400: #699fc9; --color28: #ffa733;
--alice-blue-500: #4487bb; --color29: #ff9100;
--alice-blue-600: #366c96; --color30: #cc7400;
--alice-blue-700: #295170; --color31: #995700;
--alice-blue-800: #1b364b; --color32: #663a00;
--alice-blue-900: #0e1b25; --color33: #331d00;
--alice-blue-950: #09131a; --color34: #241400;
--ink-black-50: #eef2f6; --color35: #eef2f7;
--ink-black-100: #dee6ed; --color36: #dce5ef;
--ink-black-200: #bdccdb; --color37: #bacade;
--ink-black-300: #9cb2c9; --color38: #97b0ce;
--ink-black-400: #7a99b8; --color39: #7495be;
--ink-black-500: #597fa6; --color40: #527bad;
--ink-black-600: #476685; --color41: #41628b;
--ink-black-700: #364c63; --color42: #314a68;
--ink-black-800: #243342; --color43: #213145;
--ink-black-900: #121921; --color44: #101923;
--ink-black-950: #0c1217; --color45: #0b1118;
--taupe-50: #f4f2f0;
--taupe-100: #e9e4e2;
--taupe-200: #d3cac5;
--taupe-300: #bdafa8;
--taupe-400: #a7958b;
--taupe-500: #917a6e;
--taupe-600: #746258;
--taupe-700: #574942;
--taupe-800: #3a312c;
--taupe-900: #1d1816;
--taupe-950: #14110f;
/* New CSS Variables */ /* New CSS Variables */
--bg-color: var(--rich-cerulean-950); --bg-color: var(--color45);
--panel-bg: rgba(30, 41, 59, 0.7); --panel-bg: rgba(30, 41, 59, 0.7);
--text-main: var(--alice-blue-200); --text-main: var(--color24);
--text-muted: var(--sand-dune-600); --text-muted: var(--color36);
--accent-primary: var(--taupe-500); --accent-primary: var(--color41);
--accent-secondary: var(--rich-cerulean-300); --accent-secondary: var(--color38);
--success: var(--sand-dune-200); --success: var(--color39);
--danger: var(--ink-black-400); --danger: var(--color30);
--border-color: rgba(255, 255, 255, 0.1); --border-color: rgba(255, 255, 255, 0.1);
--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
@@ -111,10 +101,14 @@ button {
border: none; border: none;
outline: none; outline: none;
transition: all 0.3s ease; transition: all 0.3s ease;
background-color: var(--accent-primary); background-color: var(--color5); /* Default background color */
color: var(--text-main); color: var(--text-main);
padding: 10px 20px; padding: 10px 20px;
border-radius: 4px; border-radius: 4px;
&:hover {
background-color: var(--color6); /* Hover state background color */
}
} }
input { input {
@@ -123,6 +117,13 @@ input {
background-color: var(--bg-color); background-color: var(--bg-color);
color: var(--text-main); color: var(--text-main);
padding: 8px 12px; padding: 8px 12px;
border: 1px solid var(--border-color); border: 1px solid var(--color3);
border-radius: 4px;
&:focus {
border-color: var(--color4); /* Focus state border color */
}
}
h1, h2, h3 {
color: var(--color5);
} }