Skip to content

Commit

Permalink
color change (#50)
Browse files Browse the repository at this point in the history
* color change

* version change
  • Loading branch information
ct-dixit authored Jan 20, 2023
1 parent 8e1bf97 commit 2d2466b
Show file tree
Hide file tree
Showing 4 changed files with 2,291 additions and 2,086 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "berry-material-react-free",
"version": "3.2.0",
"version": "3.3.0",
"private": true,
"homepage": "https://berrydashboard.io/free",
"dependencies": {
Expand Down
20 changes: 10 additions & 10 deletions src/assets/scss/_themes-vars.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$paper: #ffffff;

// primary
$primaryLight: #e3f2fd;
$primaryLight: #eef2f6;
$primaryMain: #2196f3;
$primaryDark: #1e88e5;
$primary200: #90caf9;
Expand Down Expand Up @@ -37,14 +37,14 @@ $warningMain: #ffe57f;
$warningDark: #ffc107;

// grey
$grey50: #fafafa;
$grey100: #f5f5f5;
$grey200: #eeeeee;
$grey300: #e0e0e0;
$grey500: #9e9e9e;
$grey600: #757575;
$grey700: #616161;
$grey900: #212121;
$grey50: #F8FAFC;
$grey100: #EEF2F6;
$grey200: #E3E8EF;
$grey300: #CDD5DF;
$grey500: #697586;
$grey600: #4B5565;
$grey700: #364152;
$grey900: #121926;

// ==============================|| DARK THEME VARIANTS ||============================== //

Expand All @@ -57,7 +57,7 @@ $darkLevel1: #29314f; // level 1
$darkLevel2: #212946; // level 2

// primary dark
$darkPrimaryLight: #e3f2fd;
$darkPrimaryLight: #eef2f6;
$darkPrimaryMain: #2196f3;
$darkPrimaryDark: #1e88e5;
$darkPrimary200: #90caf9;
Expand Down
2 changes: 1 addition & 1 deletion src/ui-component/cards/MainCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const MainCard = forwardRef(
{...others}
sx={{
border: border ? '1px solid' : 'none',
borderColor: theme.palette.primary[200] + 75,
borderColor: theme.palette.primary[200] + 25,
':hover': {
boxShadow: boxShadow ? shadow || '0 2px 14px 0 rgb(32 40 45 / 8%)' : 'inherit'
},
Expand Down
Loading

0 comments on commit 2d2466b

Please sign in to comment.