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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
26 changes: 26 additions & 0 deletions src/themes/UeAuroraPopLight.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { ITheme } from './ITheme';

export const UeAuroraPopLight: ITheme = {
DisplayName: 'UE Aurora Pop Light',
CodeStyles: {
Keyword: { Color: '4f46e5', FontWeight: 'bold' },

Check failure on line 6 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `·····`
Comment: { Color: '16a34a', FontStyle: 'italic' },

Check failure on line 7 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `····`
Plaintext: { Color: '111827' },

Check failure on line 8 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `·······················`
Punctuation: { Color: '334155' },

Check failure on line 9 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `····················`
String: { Color: 'db2777' },

Check failure on line 10 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `··························`
Literal: { Color: '8b5cf6' },

Check failure on line 11 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `·························`
Type: { Color: '0891b2' },

Check failure on line 12 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `····························`
Tag: { Color: '2563eb' },

Check failure on line 13 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `·····························`
AttributeName: { Color: '059669' },

Check failure on line 14 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `···················`
AttributeValue: { Color: 'c026d3' },

Check failure on line 15 in src/themes/UeAuroraPopLight.ts

View workflow job for this annotation

GitHub Actions / build

Delete `··················`
Decimal: { Color: 'f59e0b' },
NoCode: { Color: '7c3aed' },
},
BackgroundStyle: {
BackgroundColor: 'fcfcff',
},
LineNumberStyle: {
Color: '64748b',
BackgroundColor: 'fcfcff',
},
};
26 changes: 26 additions & 0 deletions src/themes/UeNeonCandyLight.ts
Original file line number Diff line number Diff line change
@@ -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',
},
};
4 changes: 4 additions & 0 deletions src/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -506,6 +508,8 @@ export const Themes: ThemeDictionary = {
TokyoNightLight,
TomorrowNightBlue,
TomorrowNightBright,
UeAuroraPopLight,
UeNeonCandyLight,
Vs,
Vs2015,
XCode,
Expand Down