This commit is contained in:
fengchuanhn@gmail.com
2026-05-16 02:16:49 +08:00
parent 9f7f80e04e
commit 491231bdd5
4 changed files with 198 additions and 36 deletions

View File

@@ -0,0 +1,39 @@
import Aura from "@primeuix/themes/aura";
import { definePreset } from "@primeuix/themes";
/**
* Aura 默认 primary 为 emerald绿色
* 使用科技蓝hue ~217色阶区别于青色/cyan。
*/
export const AiclientPreset = definePreset(Aura, {
primitive: {
techblue: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
950: "#172554",
},
},
semantic: {
primary: {
50: "{techblue.50}",
100: "{techblue.100}",
200: "{techblue.200}",
300: "{techblue.300}",
400: "{techblue.400}",
500: "{techblue.500}",
600: "{techblue.600}",
700: "{techblue.700}",
800: "{techblue.800}",
900: "{techblue.900}",
950: "{techblue.950}",
},
},
});