From 7a1edc3c401c573128b9d71631cd9f7e8d6c1051 Mon Sep 17 00:00:00 2001 From: XIN Date: Fri, 26 Jun 2026 22:56:14 +0800 Subject: [PATCH 1/2] style(kimi-web): unify composer card and toolbar radius with --r-xl token --- apps/kimi-web/src/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/kimi-web/src/style.css b/apps/kimi-web/src/style.css index 081c7a78a..b76f3806d 100644 --- a/apps/kimi-web/src/style.css +++ b/apps/kimi-web/src/style.css @@ -35,6 +35,7 @@ --r-sm: 8px; --r-md: 12px; --r-lg: 16px; + --r-xl: 20px; --ui-font-size: 14px; --ui-font-size-sm: calc(var(--ui-font-size) - 1px); --ui-font-size-xs: calc(var(--ui-font-size) - 2px); @@ -876,10 +877,14 @@ html[data-color-scheme="dark"][data-theme="kimi"] { /* Composer: the one card that keeps a shadow (effect.shadow.inputDefault), with the chat-input radius documented in web-best-practices ยง8. */ html[data-theme="kimi"] .composer-card { - border-radius: 20px; + border-radius: var(--r-xl); box-shadow: 0 5px 16px -4px rgba(0, 0, 0, 0.07); } +html[data-theme="kimi"] .toolbar { + border-radius: 0 0 var(--r-xl) var(--r-xl); +} + /* Cards stay flat: no hover lift, no shadow (Quiet Utility / card.md). */ html[data-theme="kimi"] .box:hover { transform: none; From 6b64d3393711fb8d50ea356481142ae3cea071d6 Mon Sep 17 00:00:00 2001 From: XIN Date: Fri, 26 Jun 2026 22:59:25 +0800 Subject: [PATCH 2/2] chore: add changeset for kimi toolbar radius --- .changeset/kimi-toolbar-radius.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/kimi-toolbar-radius.md diff --git a/.changeset/kimi-toolbar-radius.md b/.changeset/kimi-toolbar-radius.md new file mode 100644 index 000000000..2c8630cc5 --- /dev/null +++ b/.changeset/kimi-toolbar-radius.md @@ -0,0 +1,5 @@ +--- +"@moonshot-ai/kimi-code": patch +--- + +Unify the Kimi theme composer card and toolbar bottom radius using the `--r-xl` radius token.