import { buildColorTokens } from "../colorTokens"; import { useTheme } from "../ThemeContext"; import { formatHex, Oklch } from "culori"; const SearchBar = ({ baseColor }: { baseColor: Oklch }) => { const { theme } = useTheme(); const tokens = buildColorTokens(baseColor)[theme]; return (
); }; const Paragraph = ({ baseColor }: { baseColor: Oklch }) => { const { theme } = useTheme(); const tokens = buildColorTokens(baseColor)[theme]; return (

《尘海绘仙缘》是洛凛于 2024 年 12 月 15 日投稿至哔哩哔哩的 Synthesizer V 中文原创歌曲, 由赤羽演唱。

); }; const Buttons = ({ baseColor }: { baseColor: Oklch }) => { const { theme } = useTheme(); const tokens = buildColorTokens(baseColor)[theme]; return (
); }; export { SearchBar, Paragraph, Buttons };