diff --git a/package.json b/package.json index 907d902..65d2bdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "easy-code-formatter-styles", - "version": "1.2.18", + "version": "1.2.19", "description": "A package which contains the styling details for easy code formatter.", "main": "dist/index.js", "repository": { diff --git a/src/themes/UeAuroraPopLight.ts b/src/themes/UeAuroraPopLight.ts new file mode 100644 index 0000000..f3d2e81 --- /dev/null +++ b/src/themes/UeAuroraPopLight.ts @@ -0,0 +1,26 @@ +import { ITheme } from './ITheme'; + +export const UeAuroraPopLight: ITheme = { + DisplayName: 'UE Aurora Pop Light', + CodeStyles: { + Keyword: { Color: '4f46e5', FontWeight: 'bold' }, + Comment: { Color: '16a34a', FontStyle: 'italic' }, + Plaintext: { Color: '111827' }, + Punctuation: { Color: '334155' }, + String: { Color: 'db2777' }, + Literal: { Color: '8b5cf6' }, + Type: { Color: '0891b2' }, + Tag: { Color: '2563eb' }, + AttributeName: { Color: '059669' }, + AttributeValue: { Color: 'c026d3' }, + Decimal: { Color: 'f59e0b' }, + NoCode: { Color: '7c3aed' }, + }, + BackgroundStyle: { + BackgroundColor: 'fcfcff', + }, + LineNumberStyle: { + Color: '64748b', + BackgroundColor: 'fcfcff', + }, +}; \ No newline at end of file diff --git a/src/themes/UeNeonCandyLight.ts b/src/themes/UeNeonCandyLight.ts new file mode 100644 index 0000000..18d0f7d --- /dev/null +++ b/src/themes/UeNeonCandyLight.ts @@ -0,0 +1,26 @@ +import { ITheme } from './ITheme'; + +export const UeNeonCandyLight: ITheme = { + DisplayName: 'UE Neon Candy Light', + CodeStyles: { + Keyword: { Color: '7c4dff', FontWeight: 'bold' }, + Comment: { Color: '22a06b', FontStyle: 'italic' }, + Plaintext: { Color: '1f2a44' }, + Punctuation: { Color: '475569' }, + String: { Color: 'ec4899' }, + Literal: { Color: 'f59e0b' }, + Type: { Color: '2563eb' }, + Tag: { Color: '6d28d9' }, + AttributeName: { Color: '10b981' }, + AttributeValue: { Color: 'd946ef' }, + Decimal: { Color: 'f59e0b' }, + NoCode: { Color: '0ea5e9' }, + }, + BackgroundStyle: { + BackgroundColor: 'ffffff', + }, + LineNumberStyle: { + Color: '64748b', + BackgroundColor: 'ffffff', + }, +}; \ No newline at end of file diff --git a/src/themes/index.ts b/src/themes/index.ts index 768d3fa..3e4d688 100644 --- a/src/themes/index.ts +++ b/src/themes/index.ts @@ -245,6 +245,8 @@ import { TokyoNightDark } from './TokyoNightDark'; import { TokyoNightLight } from './TokyoNightLight'; import { TomorrowNightBlue } from './TomorrowNightBlue'; import { TomorrowNightBright } from './TomorrowNightBright'; +import { UeAuroraPopLight } from './UeAuroraPopLight'; +import { UeNeonCandyLight } from './UeNeonCandyLight'; import { Vs } from './Vs'; import { Vs2015 } from './Vs2015'; import { XCode } from './XCode'; @@ -506,6 +508,8 @@ export const Themes: ThemeDictionary = { TokyoNightLight, TomorrowNightBlue, TomorrowNightBright, + UeAuroraPopLight, + UeNeonCandyLight, Vs, Vs2015, XCode,