Skip to content

Commit

Permalink
Merge pull request #45 from CraBft/feature/blog/theme
Browse files Browse the repository at this point in the history
theme.js color 추가
  • Loading branch information
JaeSeoKim authored Apr 18, 2022
2 parents aa17bb3 + b69952e commit 83c24aa
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 83c24aa

Please sign in to comment.