UNPKG
ipink-themejs
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.0.7
1.0.2
1.0.1
1.0.0
0.0.2
0.0.1
Theme for ui, 根据自定义的颜色值导出一套常用的Map合集, 字号、圆角、边框、字色、背景色、...
github.com/ipinker/themejs
ipinker/themejs
ipink-themejs
/
dist
/
theme
/
index2.d.ts
11 lines
(9 loc)
•
304 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ColorToken
,
SeedMap
,
SeedOption
}
from
'./interface'
;
export
type
ThemeOptions
= {
themeList
?:
SeedMap
[] |
SeedOption
[];
id
?:
string
;
useDark
?:
boolean
;
platform
?:
string
;
useUnit
?:
boolean
; };
export
declare
const
createThemeList
:
(
options
?:
ThemeOptions
) =>
ColorToken
[];