Skip to content

Commit

Permalink
migration of the style configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitardanailov committed May 23, 2024
1 parent 1a78f8f commit 31fd979
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions apps/website/src/styles/configurations/dark.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// grey
const primary = {
main: '#212121',
light: '#484848',
dark: '#000000',
}

// blue
const secondary = {
main: '#0d47a1',
light: '#5472d3',
dark: '#002171',
}

const themes = {
primary,
secondary,
}

export default themes
20 changes: 20 additions & 0 deletions apps/website/src/styles/configurations/light.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// grey
const primary = {
main: '#fafafa',
light: '#ffffff',
dark: '#c7c7c7',
}

// blue
const secondary = {
main: '#0d47a1',
light: '#5472d3',
dark: '#002171',
}

const themes = {
primary,
secondary,
}

export default themes

0 comments on commit 31fd979

Please sign in to comment.