Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement to the existing Light Theme #2103

Merged
merged 2 commits into from
Jul 20, 2024
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
201 changes: 165 additions & 36 deletions bundles/org.eclipse.ui.themes/css/e4_default_mac.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,88 +18,217 @@
@import url("platform:/plugin/org.eclipse.ui.themes/css/e4_basestyle.css");

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_UNSELECTED_TABS_COLOR_START {
color: rgb(255, 255, 255);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_UNSELECTED_TABS_COLOR_END {
color: rgb(255, 255, 255);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_UNSELECTED_TABS_COLOR_START {
color: rgb(255, 255, 255);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_UNSELECTED_TABS_COLOR_END {
color: rgb(255, 255, 255);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_TAB_OUTER_KEYLINE_COLOR {
color: rgb(230, 230, 230);
color: #EAEAEA;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_TAB_OUTLINE_COLOR {
color: #f8f8f8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_TAB_BG_START {
color: rgb(230, 230, 230);
color: #f8f8f8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_TAB_BG_END {
color: rgb(255, 255, 255);
color: #f8f8f8;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_OUTER_KEYLINE_COLOR {
color: #EAEAEA;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_OUTLINE_COLOR {
color: #f8f8f8;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_BG_START {
color: rgb(240, 240, 240);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_BG_END {
color: rgb(255, 255, 255);
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END {
color: #F8F8F8;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_TEXT_COLOR {
color: #404040;
}

ColorDefinition#org-eclipse-ui-workbench-ACTIVE_TAB_TEXT_COLOR {
color: #404040;
}

ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_TEXT_COLOR {
color: #404040;
}

.MTrimmedWindow {
background-color: rgb(255, 255, 255);
background-color: '#f8f8f8';
}

.MTrimBar {
background-color: rgb(255, 255, 255);
background-color: '#f8f8f8';
}

.MTrimBar#org-eclipse-ui-main-toolbar {
background-color: rgb(255, 255, 255);
background-color: '#f8f8f8';
}

CTabFolder Canvas {
background-color: rgb(255, 255, 255);
}

/* Below changes were added to enhance the appearance of Light theme with ref to other IDEs like VS Code,IntelliJ etc. */

.MTrimBar#org-eclipse-ui-trim-status {
background-color: '#f8f8f8';

}

.MPartStack {
swt-simple: false;
swt-unselected-tabs-color: rgb(255, 255, 255);
swt-outer-keyline-color: rgb(230, 230, 230);
swt-inner-keyline-color: rgb(200, 200, 200);
swt-tab-outline: rgb(230, 230, 230);
.View Composite,
.View Composite Tree,
.View Composite Label,
.View ToolBar,
.View Group,
.View Group Label,
.View Section,
.View Text[style~='SWT.READ_ONLY'],
.View SashForm,
.View OleFrame,
.View Browser,
.View WebSite,
.View StyledText[style~='SWT.READ_ONLY'],
.View Link,
.View FormText,
.View Hyperlink,
.View AtcProblemsViewWelcomePage StyledText
{
background-color: #f8f8f8;
}

.MPartStack.active > Composite {
swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_TAB_BG_START' '#org-eclipse-ui-workbench-ACTIVE_TAB_BG_END' 100% 5%;
background-color: rgb(255, 255, 255);
.View ToolItem,
.View Button{
background-color: inherit;
}

.View Section ToolItem{
background-color: #EAEAEA;
}

.View Composite PrependingAsteriskFilteredTree,
.View PrependingAsteriskFilteredTree Text,
.View LoggingViewFilteredTree,
.View LoggingViewFilteredTree Text,
.View Group Text,
.View Group Combo,
.View Composite Text,
.View OSLPackageSetTableComposite Label,
.View Button[style~='SWT.PUSH']{
background-color: #ffffff;
}

.MPartStack{
swt-selected-tab-highlight: #5983c5;
swt-selected-highlight-top: false;
}

.MPartStack.active {
swt-tab-outline: rgb(180, 180, 180);
swt-outer-keyline-color: rgb(180, 180, 180);
swt-selected-tab-highlight: #5983c5;
swt-selected-highlight-top: false;
}

CTabFolder.MArea {
background-color: rgb(255, 255, 255);
swt-selected-tab-fill: rgb(255, 255, 255);
swt-unselected-tabs-color: rgb(255, 255, 255);
swt-outer-keyline-color: rgb(230, 230, 230);
swt-inner-keyline-color: rgb(230, 230, 230);
swt-tab-outline: rgb(230, 230, 230);
/* text color of unselected tabs in editor*/
#org-eclipse-ui-editorss CTabItem{
color: '#6A6A6A';
background-color: '#f8f8f8';
}

CTabFolder {
swt-selected-tabs-background: rgb(255, 255, 255);
/*text color and background color of selected tab in editor */
#org-eclipse-ui-editorss CTabItem:selected{
color: '#3b3b3b';
background-color: '#FFFFFF';
}

CTabFolder CTabItem:selected {
background-color: rgb(230, 230, 230);
#org-eclipse-ui-editorss CTabFolder{
swt-selected-tab-fill : '#ffffff';
swt-selected-tab-highlight: '#5983c5';
swt-selected-highlight-top: true;
swt-tab-outline:#eaeaea;
swt-tab-outer-keyline: #eaeaea;
}

CTabFolder Canvas {
background-color: rgb(255, 255, 255);
#org-eclipse-ui-editorss CTabFolder.active {
swt-selected-tab-highlight: '#5983c5';
swt-selected-highlight-top: true;
}

#org-eclipse-e4-ui-compatibility-editor Composite{
background-color: #ffffff;
}

#DebugBreadcrumbItemComposite,
#DebugBreadcrumbItemDropDownToolBar,
#DebugBreadcrumbItemDetailComposite,
#DebugBreadcrumbItemDetailImageComposite,
#DebugBreadcrumbItemDetailImageLabel,
#DebugBreadcrumbItemDetailTextComposite,
#DebugBreadcrumbItemDetailTextLabel {
background-color: '#FFFFFF';
}

Composite.MPartSashContainer{
background-color: #f8f8f8;
}

Composite.MArea{
background-color: #ffffff;
}

.MPart CTabFolder{
swt-outer-keyline-color: #ffffff;
}

.MPart Form Composite,
.MPart Form Section,
.MPart Form Label,
.MPart Form Text,
.MPart Form Button,
.MPart Form Sash,
.MPart Form AdtFormToolkit-AdtHyperLink
{
background-color: '#FFFFFF';
}

.MPartStack.active .MPart Form Composite,
.MPartStack.active .MPart Form Section,
.MPartStack.active .MPart Form Label,
.MPartStack.active .MPart Form Text,
.MPartStack.active .MPart Form Button,
.MPartStack.active .MPart Form Sash,
.MPartStack.active .MPart Form AdtFormToolkit-AdtHyperLink
{
background-color: '#FFFFFF';
}
Loading
Loading