@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
50 lines • 1.25 kB
JavaScript
import { defaultThemeMap as defaultStitchesThemeMap } from "@stitches/react";
export const defaultTokens = {
fonts: {},
fontSizes: {},
fontWeights: {},
lineHeights: {},
letterSpacings: {},
space: {},
sizes: {},
radii: {},
zIndices: {},
borderWeights: {},
shadows: {},
transitions: {},
breakpoints: {
xs: "0em",
sm: "35em",
md: "48em",
lg: "62em",
xl: "80em",
xxl: "96em"
},
colors: {}
};
const defaultMedia = {
xs: `(min-width: ${defaultTokens.breakpoints.xs})`,
sm: `(min-width: ${defaultTokens.breakpoints.sm})`,
md: `(min-width: ${defaultTokens.breakpoints.md})`,
lg: `(min-width: ${defaultTokens.breakpoints.lg})`,
xl: `(min-width: ${defaultTokens.breakpoints.xl})`,
xxl: `(min-width: ${defaultTokens.breakpoints.xxl})`,
motion: "(prefers-reduced-motion)",
safari: "not all and (min-resolution:.001dpcm)",
hover: "(any-hover: hover)",
dark: "(prefers-color-scheme: dark)",
light: "(prefers-color-scheme: light)"
};
export const defaultUtils = {};
export const defaultThemeMap = {
...defaultStitchesThemeMap
};
export default {
prefix: "auraicons",
theme: {
...defaultTokens
},
media: defaultMedia,
utils: defaultUtils,
themeMap: defaultThemeMap
};