Skip to content

Commit

Permalink
feat(blog): theme.js color 추가 #39
Browse files Browse the repository at this point in the history
  • Loading branch information
Yenowme committed Apr 18, 2022
1 parent 4ec307b commit b69952e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/blog/styles/theme.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
import {} from 'styled-components'

export const theme = {}
const color = {
main: '#558FFF',
white: '#FDFDFD',
black: '#030303',
grey100: '#F5F5F7',
grey200: '#EDEDED',
grey300: '#ACACAC',
grey400: '#737373',
} as const

export const theme = {
color,
}

export type Theme = typeof theme

0 comments on commit b69952e

Please sign in to comment.