-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial upload, spinoff from Azurra/Windows-95
- Loading branch information
1 parent
24a731c
commit 716adf0
Showing
149 changed files
with
3,871 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
######################################################################## | ||
# Button | ||
######################################################################## | ||
|
||
style "button" | ||
{ | ||
|
||
engine "pixmap" | ||
{ | ||
### Button ### | ||
|
||
## Normal | ||
image | ||
{ | ||
function = BOX | ||
state = NORMAL | ||
file = "button/button.png" | ||
border = {5, 5, 5, 5} | ||
stretch = TRUE | ||
|
||
} | ||
## Prelight | ||
image | ||
{ | ||
function = BOX | ||
state = PRELIGHT | ||
file = "button/button.png" | ||
border = {5, 5, 5, 5} | ||
stretch = TRUE | ||
} | ||
|
||
## Insensitive | ||
image | ||
{ | ||
function = BOX | ||
state = INSENSITIVE | ||
file = "button/button-ins.png" | ||
border = {5, 5, 5, 5} | ||
stretch = TRUE | ||
} | ||
|
||
## Active | ||
image | ||
{ | ||
function = BOX | ||
state = ACTIVE | ||
file = "button/button-pressed.png" | ||
border = {5, 5, 5, 5} | ||
stretch = TRUE | ||
} | ||
|
||
### Focus ### | ||
image | ||
{ | ||
function = FOCUS | ||
file = "null.png" | ||
} | ||
} | ||
} | ||
|
||
class "GtkButton*" style "button" | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
######################################################################## | ||
# Check boxes | ||
######################################################################## | ||
|
||
style "check_box" | ||
{ | ||
### Check box ### | ||
|
||
engine "pixmap" | ||
{ | ||
image | ||
{ | ||
function = CHECK | ||
shadow = OUT | ||
overlay_file = "c_box/c_box.png" | ||
overlay_stretch = FALSE | ||
} | ||
|
||
image | ||
{ | ||
function = CHECK | ||
shadow = IN | ||
overlay_file = "c_box/c_box-pressed.png" | ||
overlay_stretch = FALSE | ||
} | ||
|
||
image | ||
{ | ||
function = OPTION | ||
shadow = OUT | ||
overlay_file = "c_box/c_box.png" | ||
overlay_stretch = FALSE | ||
} | ||
|
||
image | ||
{ | ||
function = OPTION | ||
shadow = IN | ||
overlay_file = "c_box/c_box-pressed.png" | ||
overlay_stretch = FALSE | ||
} | ||
} | ||
} | ||
|
||
class "GtkCheckButton*" style "check_box" | ||
class "GtkCheckMenuItem*" style "check_box" | ||
class "GtkTreeView*" style "check_box" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
######################################################################## | ||
# Entry | ||
######################################################################## | ||
|
||
style "entry" | ||
{ | ||
GtkWidget::interior_focus = 0 | ||
GtkEntry::inner-border = {2, 2, 2, 2} | ||
|
||
engine "pixmap" | ||
{ | ||
### Entry ### | ||
image | ||
{ | ||
function = SHADOW | ||
detail = "entry" | ||
file = "entry/entry.png" | ||
border = {2, 2, 2, 2} | ||
stretch = TRUE | ||
} | ||
|
||
### Focus ### | ||
image | ||
{ | ||
function = FOCUS | ||
detail = "entry" | ||
file = "entry/entry-active.png" | ||
border = {2, 2, 2, 2} | ||
stretch = TRUE | ||
} | ||
} | ||
} | ||
|
||
class "GtkEntry*" style "entry" | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
######################################################################## | ||
# Windows 95 | ||
# By Christian Medel (Elbullazul) - http://b00merang.weebly.com | ||
# Original theme based on Andrey Tverdov 2010's QNX theme. | ||
# Spinoff from Matthew Matt's Win 3.x Theme [http://gnome-look.org/content/show.php/Win3x?content=169112] | ||
# GPL2 | ||
######################################################################## | ||
|
||
gtk_color_scheme = | ||
"fg_color:#000\nbg_color:#d3d0c7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#000082\nselected_fg_color:#fff\ntooltip_bg_color:#FFFFBF\ntooltip_fg_color:#000\ntitlebar_bg_color:#000082\ntitlebar_ibg_color:#848484" | ||
gtk-icon-sizes ="gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-button=16,16" | ||
|
||
include "scrollbar.rc" | ||
include "scale.rc" | ||
include "notebook.rc" | ||
include "button.rc" | ||
include "radio.rc" | ||
include "c_box.rc" | ||
include "progressbar.rc" | ||
include "entry.rc" | ||
include "menubar.rc" | ||
include "spin.rc" | ||
include "toolbar.rc" | ||
|
||
style "default" | ||
{ | ||
GtkToolbar::shadow_type = GTK_SHADOW_OUT | ||
GtkPaned::handle-size = 0 | ||
GtkTreeView::odd_row_color = @base_color | ||
GtkTreeView::even_row_color = @base_color | ||
|
||
fg[ACTIVE] = @fg_color | ||
fg[INSENSITIVE] = @fg_color | ||
fg[NORMAL] = @fg_color | ||
fg[PRELIGHT] = @fg_color | ||
fg[SELECTED] = @selected_fg_color | ||
|
||
bg[ACTIVE] = @bg_color | ||
bg[INSENSITIVE] = @bg_color | ||
bg[NORMAL] = @bg_color | ||
bg[PRELIGHT] = @bg_color | ||
bg[SELECTED] = @selected_bg_color | ||
|
||
base[ACTIVE] = @selected_bg_color | ||
base[INSENSITIVE] = @selected_fg_color | ||
base[NORMAL] = @base_color | ||
base[PRELIGHT] = @selected_bg_color | ||
base[SELECTED] = @selected_bg_color | ||
|
||
text[ACTIVE] = shade (0.9,@selected_fg_color) | ||
text[INSENSITIVE] = shade (0.7,@bg_color) | ||
text[NORMAL] = @text_color | ||
text[PRELIGHT] = @selected_fg_color | ||
text[SELECTED] = @selected_fg_color | ||
|
||
engine "redmond95" | ||
{ | ||
} | ||
} | ||
class "GtkWidget" style "default" | ||
|
||
style "tooltips" = "default" | ||
{ | ||
bg[NORMAL] = @tooltip_bg_color | ||
fg[NORMAL] = "#000000" | ||
} | ||
|
||
|
||
widget "gtk-tooltips*" style "tooltips" | ||
|
||
style "color-fix" | ||
{ | ||
# GtkFrame::shadow-type = GTK_SHADOW_NONE | ||
GtkPaned ::handle-size = 0 | ||
GtkTreeView::expander-size = 0 | ||
GtkTreeView::vertical-separator = 0 | ||
GtkToolbar::internal-padding = 0 | ||
|
||
bg[NORMAL] = @bg_color | ||
fg[ACTIVE] = "#000" | ||
fg[INSENSITIVE] = "#000" | ||
fg[NORMAL] = "#000" | ||
fg[PRELIGHT] = "#fff" | ||
fg[SELECTED] = "#fff" | ||
|
||
text[ACTIVE] = "#000" | ||
text[INSENSITIVE] = shade (0.7,@bg_color) | ||
text[NORMAL] = "#000" | ||
text[PRELIGHT] = "#000" | ||
text[SELECTED] = "#000" | ||
} | ||
|
||
#class "<GtkCombo>*" style "color-fix" | ||
#class "*.gtk-combobox-popup-menu.*" style "color-fix" | ||
class "GtkMenuBar*" style "color-fix" | ||
|
||
#class "GtkMenuItem*" style "color-fix" | ||
class "GtkImageMenuItem*" style "color-fix" | ||
class "GtkTearoffMenuItem*" style "color-fix" | ||
class "GtkItem*" style "color-fix" | ||
|
||
widget_class "*<GtkMenuBar>*" style "color-fix" | ||
widget_class "*<GtkMenu>*" style "color-fix" | ||
widget_class "*<GtkMenuItem>*" style "color-fix" | ||
widget_class "*MenuBar.*" style "color-fix" | ||
widget_class "*<GtkSeparatorMenuItem>*" style "color-fix" | ||
|
||
style "color-fix-combo" | ||
{ | ||
fg[ACTIVE] = "#000" | ||
fg[INSENSITIVE] = "#000" | ||
fg[NORMAL] = "#000" | ||
fg[PRELIGHT] = "#000" | ||
fg[SELECTED] = "#000" | ||
|
||
text[ACTIVE] = "#000" | ||
text[INSENSITIVE] = shade (0.7,@bg_color) | ||
text[NORMAL] = "#000" | ||
text[PRELIGHT] = "#000" | ||
text[SELECTED] = "#000" | ||
} | ||
|
||
style "scrolledwindow-style" { | ||
bg[NORMAL] = "#c0c0c0" | ||
GtkScrolledWindow::scrollbar-spacing = 0 | ||
GtkScrolledWindow::scrollbars-within-bevel = 1 | ||
|
||
} | ||
|
||
class "GtkScrolledWindow" style "scrolledwindow-style" | ||
widget_class "*.<GtkComboBox>.<GtkCellView>" style "color-fix-combo" | ||
|
||
style "chrome-gtk-frame" { | ||
ChromeGtkFrame::frame-color = @titlebar_bg_color | ||
ChromeGtkFrame::inactive-frame-color = @titlebar_ibg_color | ||
|
||
ChromeGtkFrame::frame-gradient-size = 0 | ||
ChromeGtkFrame::frame-gradient-color = @titlebar_ibg_color | ||
|
||
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color | ||
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_ibg_color | ||
|
||
ChromeGtkFrame::incognito-frame-gradient-size = 0 | ||
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color | ||
|
||
ChromeGtkFrame::scrollbar-trough-color = @bg_color | ||
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color) | ||
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color) | ||
} | ||
|
||
class "ChromeGtkFrame" style "chrome-gtk-frame" |
Oops, something went wrong.