Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Export components, theme; add card color
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Aug 5, 2021
1 parent df52e43 commit 5787158
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gameflow-tv/flume",
"version": "0.1.1",
"version": "0.1.2",
"description": "React implementation of the Flume design system",
"main": "dist/index.js",
"module": "dist/index.es.js",
Expand Down
1 change: 1 addition & 0 deletions src/components.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/components'
4 changes: 3 additions & 1 deletion src/lib/theme/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export type Colors = {
shimmerBackground: string
toggle: string
onToggle: string
card: string
}

const fallback: Colors = {
Expand Down Expand Up @@ -59,7 +60,8 @@ const fallback: Colors = {
shimmerHighlight: palette.white10,
shimmerBackground: palette.black10,
toggle: palette.codGray,
onToggle: palette.white
onToggle: palette.white,
card: palette.emperorGray
}

export default fallback
1 change: 1 addition & 0 deletions src/theme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/theme'

0 comments on commit 5787158

Please sign in to comment.