components/frontend_react/webapp/uno.config.ts (82 lines of code) (raw):

// Copyright 2024 Google LLC // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // uno.config.ts import themes from "daisyui/src/theming" import { defineConfig, presetIcons, presetUno, presetWebFonts } from "unocss" import { presetDaisy } from "unocss-preset-daisy" export default defineConfig({ preflights: [ { getCSS: ({ theme }) => { // console.log({ theme }) return ` * { min-width: 0; min-height: 0; } input { padding: 0rem 1rem; background-color: ${theme.colors.primary}; } textarea { background-color: ${theme.colors.primary}; } ` }, }, ], presets: [ presetUno(), presetIcons(), presetWebFonts(), // presetAttributify({ /* preset options */}), presetDaisy({ themes: [ { light: { ...themes["[data-theme=light]"], "base-100": "#ffffff", "base-200": "#f2f3f5", "base-300": "#e9ebf0", "base-content": "#282C34", primary: "#4285f4", "primary-content": "#edeff2", secondary: "#484848", "secondary-content": "#e9f1f2", accent: "#1E2043", "accent-content": "#e4e4eb", neutral: "#1E2D43", "neutral-content": "#d5d7db", info: "#4285f4", "info-content": "#89b4f9", success: "#1E8E3E", "success-content": "#e9f0eb", warning: "#F9AB00", "warning-content": "#FEF5CF", error: "#D93025", "error-content": "#ede7e6", }, }, { dark: { ...themes["[data-theme=dark]"], "base-100": "#1E2D43", "base-200": "#162233", "base-300": "#0d141f", primary: "#4e3866", "primary-content": "#edeff2", secondary: "#2D405E", "secondary-content": "#e4e4eb", accent: "#24c1e0", "accent-content": "#e9f1f2", neutral: "#1E2D43", "neutral-content": "#d5d7db", info: "#bfdbfe", "info-content": "#01152e", success: "#1E8E3E", "success-content": "#e9f0eb", warning: "#F9AB00", "warning-content": "#211700", error: "#D93025", "error-content": "#ede7e6", }, }, ], }), // ...custom presets ], })