- implement colors section

This commit is contained in:
Amruth Pillai
2020-07-09 20:06:49 +05:30
parent 3b252476c4
commit 3eaab3b427
7 changed files with 86 additions and 1 deletions

20
src/data/colors.js Normal file
View File

@ -0,0 +1,20 @@
const colors = [
'#f44336',
'#E91E63',
'#9C27B0',
'#673AB7',
'#3F51B5',
'#2196F3',
'#03A9F4',
'#00BCD4',
'#009688',
'#4CAF50',
'#8BC34A',
'#CDDC39',
'#FFEB3B',
'#FFC107',
'#FF9800',
'#FF5722',
];
export default colors;

View File

@ -1,4 +1,4 @@
import { MdDashboard, MdStyle } from 'react-icons/md';
import { MdColorLens, MdDashboard, MdStyle } from 'react-icons/md';
export default [
{
@ -11,4 +11,9 @@ export default [
name: 'Layout',
icon: MdDashboard,
},
{
id: 'colors',
name: 'Colors',
icon: MdColorLens,
},
];