UNPKG
@saas-ui/palette
Version:
beta (0.0.2-beta)
latest (2.2.0)
next (2.0.0-rc.4)
2.2.0
2.1.1
2.1.0
2.0.0
2.0.0-rc.4
2.0.0-next.3
2.0.0-next.2
2.0.0-next.1
2.0.0-next.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
1.0.0-rc.0
0.6.0-next.4
0.6.0-next.3
0.6.0-next.2
0.6.0-next.1
0.6.0-next.0
0.5.1
0.5.0
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.2-beta
0.0.1-beta
Color palette generator for Chakra UI
saas-ui.dev
saas-js/saas-ui
@saas-ui/palette
/
dist
/
index.d.mts
11 lines
(9 loc)
•
288 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
interface
PaletteColors
{ [
index
:
string
]:
string
; }
interface
PaletteOptions
{
blackLuminance
?:
number
;
colors
?:
PaletteColors
; }
declare
const
createPalette
:
(
hex
:
string
,
options
?:
PaletteOptions
) =>
any
;
export
{
type
PaletteColors
,
type
PaletteOptions
, createPalette };