Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions src/components/CippComponents/AuthMethodSankey.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,33 @@ export const AuthMethodSankey = ({ data }) => {
id: "Single factor",
nodeColor: "hsl(0, 100%, 50%)",
},
{
id: "Multi factor",
nodeColor: "hsl(200, 70%, 50%)",
},
{
id: "Phishable",
nodeColor: "hsl(12, 76%, 61%)",
nodeColor: "hsl(39, 100%, 50%)",
},
{
id: "Phone",
nodeColor: "hsl(12, 76%, 61%)",
nodeColor: "hsl(39, 100%, 45%)",
},
{
id: "Authenticator",
nodeColor: "hsl(12, 76%, 61%)",
nodeColor: "hsl(39, 100%, 55%)",
},
{
id: "Phish resistant",
nodeColor: "hsl(99, 70%, 50%)",
},
{
id: "Passkey",
nodeColor: "hsl(99, 70%, 50%)",
nodeColor: "hsl(140, 70%, 50%)",
},
{
id: "WHfB",
nodeColor: "hsl(99, 70%, 50%)",
nodeColor: "hsl(160, 70%, 50%)",
},
],
links: data,
Expand Down
26 changes: 17 additions & 9 deletions src/components/CippComponents/CaSankey.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,32 @@ export const CaSankey = ({ data }) => {
data={{
nodes: [
{
id: "User sign in",
id: "Enabled users",
nodeColor: "hsl(28, 100%, 53%)",
},
{
id: "No CA applied",
nodeColor: "hsl(0, 100%, 50%)",
id: "MFA registered",
nodeColor: "hsl(99, 70%, 50%)",
},
{
id: "CA applied",
nodeColor: "hsl(12, 76%, 61%)",
id: "Not registered",
nodeColor: "hsl(39, 100%, 50%)",
},
{
id: "No MFA",
nodeColor: "hsl(0, 69%, 50%)",
id: "CA policy",
nodeColor: "hsl(99, 70%, 50%)",
},
{
id: "MFA",
nodeColor: "hsl(99, 70%, 50%)",
id: "Security defaults",
nodeColor: "hsl(140, 70%, 50%)",
},
{
id: "Per-user MFA",
nodeColor: "hsl(200, 70%, 50%)",
},
{
id: "No enforcement",
nodeColor: "hsl(0, 100%, 50%)",
},
],
links: data,
Expand Down
Loading