Skip to content

Commit

Permalink
fix #108 - themes.ts: Reorder destructured colors
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-dassana committed Oct 12, 2020
1 parent 6124fbb commit 4150121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/assets/styles/themes.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import colors from './colors'
import { ColorManipulationTypes, manipulateColor } from 'components/utils'

const { blacks, blues, greens, oranges, reds, whites } = colors

export enum ThemeType {
dark = 'dark',
light = 'light'
}

const { blacks, blues, greens, oranges, reds, whites } = colors

export interface Theme {
action: {
active: string
Expand Down

0 comments on commit 4150121

Please sign in to comment.