File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import styled, {
1010
1111import { useIsDarkMode } from '../state/user/hooks'
1212import { colors as ColorsPalette , colorsDark , colorsLight } from './colors'
13- import { Colors , themeColors } from './styled'
13+ import { Colors , ThemeColors } from './styled'
1414import { opacify } from './utils'
1515
1616export * from './components'
@@ -54,7 +54,7 @@ const mediaWidthTemplates: { [width in keyof typeof MEDIA_WIDTHS]: typeof css }
5454const deprecated_white = ColorsPalette . white
5555const deprecated_black = ColorsPalette . black
5656
57- function uniswapThemeColors ( darkMode : boolean ) : themeColors {
57+ function uniswapThemeColors ( darkMode : boolean ) : ThemeColors {
5858 return {
5959 userThemeColor : darkMode ? colorsDark . userThemeColor : colorsLight . userThemeColor ,
6060
Original file line number Diff line number Diff line change 11import { FlattenSimpleInterpolation , ThemedCssFunction } from 'styled-components/macro'
22
33export type Color = string
4- export interface themeColors {
4+ export interface ThemeColors {
55 userThemeColor : string
66
77 backgroundBackdrop : Color
You can’t perform that action at this time.
0 commit comments