add blue color
parent
d6f9f9cdf7
commit
3ac4493f4c
|
|
@ -14,7 +14,7 @@
|
|||
.sidebar-icon {
|
||||
@apply relative flex items-center justify-center
|
||||
h-14 w-14 my-2 mx-auto
|
||||
shadow-lg bg-gray-800 text-secondary
|
||||
shadow-lg bg-blueSecondary text-secondary
|
||||
hover:bg-green-900 hover:text-primary
|
||||
rounded-3xl
|
||||
hover:rounded-xl
|
||||
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
.node-layout {
|
||||
@apply flex flex-col items-center
|
||||
w-[150px] h-fit bg-gray-700
|
||||
w-[150px] h-fit bg-bluePrimary
|
||||
p-[4px];
|
||||
}
|
||||
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
|
||||
.node-component {
|
||||
@apply relative flex flex-row h-fit rounded-md
|
||||
bg-gray-600
|
||||
bg-blueSecondary
|
||||
pr-2 my-1 mx-2
|
||||
text-white align-middle;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,11 +7,13 @@ module.exports = {
|
|||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: "#39ff14", //39ff14
|
||||
secondary: "#008a00", //78b856
|
||||
primary: "#39ff14",
|
||||
secondary: "#008a00",
|
||||
sidebar: "#333333",
|
||||
panel: "#252526",
|
||||
content: "#1e1e1e",
|
||||
bluePrimary: "#094c72",
|
||||
blueSecondary: "#0c3953",
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue