mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-07-27 18:39:04 +08:00
feat: add theme and style
This commit is contained in:
25
components/theme/interface/maps/index.ts
Normal file
25
components/theme/interface/maps/index.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import type { ColorPalettes } from '../presetColors'
|
||||
import type { SeedToken } from '../seeds'
|
||||
import type { HeightMapToken, SizeMapToken } from './size'
|
||||
import type { ColorMapToken } from './colors'
|
||||
import type { StyleMapToken } from './style'
|
||||
import type { FontMapToken } from './font'
|
||||
|
||||
export * from './colors'
|
||||
export * from './style'
|
||||
export * from './size'
|
||||
export * from './font'
|
||||
|
||||
export interface CommonMapToken extends StyleMapToken {
|
||||
// Motion
|
||||
motionDurationFast: string
|
||||
motionDurationMid: string
|
||||
motionDurationSlow: string
|
||||
}
|
||||
|
||||
// ======================================================================
|
||||
// == Map Token ==
|
||||
// ======================================================================
|
||||
// 🔥🔥🔥🔥🔥🔥🔥 DO NOT MODIFY THIS. PLEASE CONTACT DESIGNER. 🔥🔥🔥🔥🔥🔥🔥
|
||||
|
||||
export interface MapToken extends SeedToken, ColorPalettes, ColorMapToken, SizeMapToken, HeightMapToken, StyleMapToken, FontMapToken, CommonMapToken {}
|
Reference in New Issue
Block a user