UNPKG
@onethousandswaps-libs/uikit
Version:
latest (1.0.0)
1.0.0
User interface package for One THousand Swaps apps
@onethousandswaps-libs/uikit
/
components
/
Alert
/
theme.ts
11 lines
(8 loc)
•
240 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ darkColors, lightColors }
from
"../../theme/colors"
;
import
{
AlertTheme
}
from
"./types"
;
export
const
light
:
AlertTheme
= {
background
: lightColors.
card
, };
export
const
dark
:
AlertTheme
= {
background
: darkColors.
card
, };