From 002e2dc45ed6f3a73896c47f32c4d1b5875bf1d6 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Tue, 20 Jun 2023 10:33:44 +0100 Subject: [PATCH] add new theme details to solumlstate --- apps/remix-ide/src/app/plugins/solidity-umlgen.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx b/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx index 24c886763b..890cc8ece4 100644 --- a/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx +++ b/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx @@ -2,7 +2,7 @@ import { ViewPlugin } from '@remixproject/engine-web' import React from 'react' // eslint-disable-next-line @nrwl/nx/enforce-module-boundaries -import { RemixUiSolidityUmlGen } from '@remix-ui/solidity-uml-gen' +import { RemixUiSolidityUmlGen } from '@remix-ui/solidity-uml-gen' import { ISolidityUmlGen, ThemeQualityType, ThemeSummary } from 'libs/remix-ui/solidity-uml-gen/src/types' import { RemixAppManager } from 'libs/remix-ui/plugin-manager/src/types' import { normalizeContractPath } from 'libs/remix-ui/solidity-compiler/src/lib/logic/flattenerUtilities' @@ -45,6 +45,10 @@ const themeCollection = [ shapeColor: '#333333', fillColor: '#eeeeee'}, { themeName: 'Candy', backgroundColor: '#d5efff', textColor: '#11556c', shapeColor: '#343a40',fillColor: '#fbe7f8' }, + { themeName: 'Violet', backgroundColor: '#f1eef6', textColor: '#3b445e', + shapeColor: '#343a40',fillColor: '#f8fafe' }, + { themeName: 'Pride', backgroundColor: '#f1eef6', textColor: '#343a40', + shapeColor: '#343a40',fillColor: '#f8fafe' }, ] /** @@ -119,7 +123,7 @@ export class SolidityUmlGen extends ViewPlugin implements ISolidityUmlGen { return window.getComputedStyle(document.documentElement) .getPropertyValue(cssVars) } - + private handleThemeChange() { this.on('theme', 'themeChanged', async (theme) => { this.currentlySelectedTheme = theme.quality @@ -428,4 +432,4 @@ function addAssociationToDot( } return dotString + ']' -} \ No newline at end of file +}