diff --git a/src/report/dot/default-theme.mjs b/src/report/dot/default-theme.mjs index 02d9bad9d..951a7cb33 100644 --- a/src/report/dot/default-theme.mjs +++ b/src/report/dot/default-theme.mjs @@ -46,14 +46,6 @@ export default { criteria: { "rules[0].severity": "info" }, attributes: { fontcolor: "blue", color: "blue" }, }, - { - criteria: { valid: false }, - attributes: { fontcolor: "red", color: "red" }, - }, - { - criteria: { couldNotResolve: true }, - attributes: { color: "red", fontcolor: "red" }, - }, { criteria: { coreModule: true }, attributes: { color: "grey", fontcolor: "grey" }, @@ -131,10 +123,6 @@ export default { criteria: { dynamic: true }, attributes: { style: "dashed" }, }, - { - criteria: { valid: false }, - attributes: { fontcolor: "red", color: "red" }, - }, { criteria: { circular: true }, attributes: { arrowhead: "normalnoneodot" }, diff --git a/test/report/dot/theming.spec.mjs b/test/report/dot/theming.spec.mjs index 6343346c4..ea46a0afb 100644 --- a/test/report/dot/theming.spec.mjs +++ b/test/report/dot/theming.spec.mjs @@ -25,7 +25,7 @@ describe("[U] report/dot/theming - determineModuleColors - default theme", () => { couldNotResolve: true }, theming.normalizeTheme({}).modules, ), - { color: "red", fontcolor: "red" }, + {}, ); });