FlatStudio

GTK3/4 Themes by trastes 148 comments

My impression is that emeral has something to do with it, that color is defined in the theme and in a standard gnome installation works fine.

in the file .../FlatStudioLight/gtk-2.0/gtkrc on line 716

# For Google Chrome/Chromium integration.
style "chrome-gtk-frame" {
ChromeGtkFrame::frame-gradient-size = 120
ChromeGtkFrame::frame-gradient-color = shade (1.00, @theme_bg_dark_color)
ChromeGtkFrame::inactive-frame-gradient-color = shade (1.00, @theme_bg_dark_color)
ChromeGtkFrame::frame-color = shade (1.00, @theme_bg_dark_color)
ChromeGtkFrame::inactive-frame-color = shade (1.00, @theme_bg_dark_color)

ChromeGtkFrame::scrollbar-trough-color = shade (0.99, @theme_bg_dark_color)
ChromeGtkFrame::scrollbar-slider-prelight-color = shade (0.87, @theme_bg_dark_color)
ChromeGtkFrame::scrollbar-slider-normal-color = shade (0.80, @theme_bg_dark_color)
}
class "ChromeGtkFrame" style "chrome-gtk-frame"

where @theme_bg_dark_color is the frame color in the theme.

Moreover, in the options page of chromium have selected the following?
- Button "using GTK+ theme"
- Checkbox "Use borders and titlebar" - Oct 14 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Yes, I have planned suit gnome 3.6 in brief

Regarding chromiun, the problem is with FlatStudio or FlatStudioLight?, I use google chrome and tabs are fine, however, I will also do tests with chromium - Oct 14 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Glad you like it, soon come a update with two new variations ;) - Oct 13 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

I hope to have it for the release of Ubuntu 12.10 final, not much later - Oct 13 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Thanks! :) - Oct 13 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

You're right, this happening in several GTK2 apps. I'm fixing it for the next update in 1 or 2 days

thanks :) - Oct 13 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

I like a lot :)
In the next update I have include two new themes (FlatDark and FlatGray), which will have those buttons.
I only changed the Minimize button in normal state, to make it different from the other buttons (a bit lighter)

Thank you very much for your contribution ingenious ;) - Oct 13 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

Yes, you are right. I'm trying to adapt to gnome 3.6, but I have many problems because I can not find a distro with gnome 3.6 that works fine in virtualbox (my work pc have gnome 3.4.x).

Anyway I'm working on it ;) - Oct 05 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

I've been thinking about your proposal, but I have in mind to change the metacity buttons to put more flat and not know what to do.

On the other hand, I do not take much to keep it as an option. Now I am preparing version 1.01 with a choice of dark theme, surely do something about

If you already have the png or svg could send them to me by mail? (is in the readme.txt). So I can go getting ahead work - Oct 05 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

The idea of the pathbar I like, is easily achieved by editing

../FlatStudioLight/gtk-3.0/gnome-applications-light.css

about line 116

#nautilus-search-button .button:active,
#nautilus-search-button .button:active:prelight,
NautilusWindow .primary-toolbar .toolbar .button:active,
NautilusWindow .primary-toolbar.toolbar .button:active,
NautilusWindow .primary-toolbar .toolbar .button:active:hover,
NautilusWindow .primary-toolbar.toolbar .button:active:hover {
.........
.........
.........

}

change
border-color: shade (@theme_bg_color, 0.85);
background-color: shade (@theme_bg_color, 0.85);

by
border-color: @transparent;
background-color: @transparent;


The theme of the link is KDE, and it's pretty much like this, maybe the dark bottom edge, but I have no sure if I like it - Oct 05 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Ahora si, con lo de ubuntu-tweak ya he visto el problema y en la terminal, al ponerle los colores de sistema, tambien se me reproduce el texto negro sobre fondo negro.

A lo largo del día subiré un update con los arreglos.

Gracias por los avisos :) - Oct 01 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

en principio creo que el tema no cambia los colores de la consola,

has probado en el menu del terminal:
editar-> preferencias del perfil
tab "colores"

ahí puedes modificar el esquema de colores, o tienes el problema en los menus del terminal?

- Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

no te adelantes jeje, flatdark (flat=plano) irá en el update 1.01, antes quiero dejar el tema bien asentado. - Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

es un poco extraño lo de las scrollbars, las scrollbars no cambian de color con el color de seleccion, siempre deberían de ser gris claro/oscuro.

por si te refieres a otras barras (las progressbar por ejemplo), has hecho el cambio para gtk3 y gtk2 como te comenté anteriormente? (te respondi 2 post para el cambio de color) - Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

for now is part of the original design of the mockup, I have yet to decide whether to keep or not.

but if you do not like, edit ../gtk-3.0/gtk.css and seek

@import url("scrollbar.css");

replace with

@import url("scrollbar-classic.css");
- Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

I have the impression that made ​​a syntax error when editing the file gtk.css

can make a copy/paste of the lines that have changed in GTK3? - Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Se me olvidaba decirte que el color que pongas en gtk3 tienes que ponerlo tambien en gtk2.

edita ../flatstudio/gtk-2.0/gtkrc, y al principio encontraras

# selection background color #####################################
# should be the same color that you have set in the file gtk.css #
gtk-color-scheme = "selected_bg_color:#85bfe2"
###################################################################

para gtk3, en gtk.css tenías
@define-color selection_ubuntu #eaa983;

para gtk2 cambia el color de seleccion para que quede así

# selection background color #####################################
# should be the same color that you have set in the file gtk.css #
gtk-color-scheme = "selected_bg_color:#eaa983"
###################################################################


- Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Muchas gracias Gabe! Te las sabes todas, este spinoff arregla esos iconos que faltaban pata unity :). Me ha sorprendido este theme de iconos, tiene un encanto especial esta filosofia de hacer las cosas simples, y mira que yo no era de filosofia minimalista, pero me ha gustado mucho trabajar esto.



- Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

Esta todo previsto jeje, dentro de ../flatstudio/gtk-3.0/gttk.css, sobre la linea 30 te encontraras esto

@define-color theme_selected_bg_color @selection_acid_green;

justo en las lineas anteriores tienes varios colores predefinidos, en tu caso sería:

@define-color theme_selected_bg_color @selection_ubuntu;

prueba y si no te gusta puedes definir tu propio color de seleccion.
esto esta pensado solo para flatstudio en flatstudiolight no se como irá. - Sep 30 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

well ... much credit is of Tobias (author of the mockup). I'm glad that now goes well

thanks for your feedback :) - Sep 29 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

is strange, what version of gnome you have? - Sep 29 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

The truth is that it was not easy to find these icons, did not know them. But now I'm very satisfied, go very well with these themes.

In my opinion they are very complete, and with a few more icons would be perfect.

NITRUX-G and NITRUX-C are fantastic for flastudio, only found one small problem in unity, the wifi icon and the System icon (top-right), in gnome shell does not have that problem.

Clarity icons and AwokenDark, I wish they were a little more light, the black level is based on color #444444 and would like to try with #888888, but it is just an opinion and to test the appearance, are all very good and very well made.

Be sure to let me know if you make a simplistic icon theme ;) be great to have another option. - Sep 29 2012
FlatStudio

GTK3/4 Themes by trastes 148 comments

I've been trying to fix this, but I have not found a way.

The only theme I've seen it done right is Adwaita, if not find a way to fix it, I'll try to adapt the metacity theme from Adwaita

Thanks for your comment :) - Sep 29 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

in the readme.txt explains how to fix it and because it not is fixed by default. - Sep 13 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

gimp error can fix by editing
../Adwaita Cupertino SL/gtk-2.0/gtkrc

on line 59, change
GtkScrollbar::trough-side-details = FALSE
by
GtkScrollbar::trough-side-details = 0

truly is a pretty weird error :) - Sep 13 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

nautilus error is due to the line (in ../gtk-3.0/gtk.css) where it says

@import url("unity-darkest.css");

to resolve momentarily can do the following:
- Change by
@import url("unity.css");

The other error I am looking ... - Sep 13 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

Yes, in fact there is that option ;)

I forgot to document it in the readme.txt (sorry), but if you edit the file
../Adwaita Cupertino L unity/gtk-3.0/gtk.css
OR
../Adwaita Cupertino SL unity/gtk-3.0/gtk.css
(depending on the version you use)

Around line 210, you have the option to change it

is the fourth option

change
@import url("unity.css");

by
@import url("unity-darkest.css"); - Sep 01 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

I'll start working when the beta comes out in september - Aug 27 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

not a bug, just from the 12.04 version does not work.
This has been explained countless times in previous post - Jul 15 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

in the readme.txt file explains how to fix it with their pros and cons - Jul 15 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

Remember that the theme is made for gnome 3.4.x (ubuntu 12.04) and NOT for gnome 3.5.x (ubuntu 12.10 alpha), I say this because if you are using ubuntu 12.10

My English is very bad and instead of giving technical explanations I'll give you the opportunity to experience for yourself.

edit the file
/Adwaita Cupertino L Unity/metacity-1/metacity-theme-1.xml

about line 110 find the following
<!-- ::: TITLEBAR ::: -->
<draw_ops name="titlebar_gradient">
<gradient type="vertical" x="0" y="0" width="width" height="top_height">
<color value="shade/gtk:bg[NORMAL]/0.98"/>
<color value="shade/gtk:bg[NORMAL]/0.90"/>
</gradient>
</draw_ops>

replace with this (copy / paste)
<!-- ::: TITLEBAR ::: -->
<draw_ops name="titlebar_gradient">
<gradient type="vertical" x="0" y="0" width="width" height="top_height">
<color value="shade/gtk:bg[NORMAL]/0.98"/>
<color value="shade/gtk:bg[NORMAL]/0.77"/>
</gradient>
<line color="shade/gtk:bg[NORMAL]/0.55" x1="0" y1="top_height - 1" x2="width" y2="top_height - 1"/>
</draw_ops>

close and open session, if you use ubuntu 12.10 and it works well let me know

On the other hand, tell you that there are two basic types of windows:
- Normal (no line below the title)
- Dialog (do have line below the title)
each with its specific rendering method.

- Jul 11 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

Well, you now have grounds to investigate what went wrong, and learn more :)
I am glad it is all resolved.
regards

- Jun 24 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

try this:

Create a folder
.themes/Cupertino L Unity

and extract the contents of -Adwaita Cupertino L Unity- directly in that folder

Then select the theme -> Cupertino L Unity - Jun 24 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

please see screenshot # 2, is made with ubuntu 12.04 and compare to your screenshot, probably on your system something is not properly installed

Adw. Cupert. v1.4.2 is downloaded from here - Jun 24 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

your screenshot is from the old version of Adwaita Cupertino (for gnome 3.2)

for ubuntu 12.04 (gnome 3.4.x) please install the latest version - Jun 24 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

A bit strange really is, you may have a problem with the installation of unico-engine?

which distro you use? - Jun 23 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

I do not know, I think it depends on how the changes affect the theme, 2 months ago that I have gnome 3.4, now is a bit early to think about gnome 3.5.

After my bad experience with v3.2 to v3.4 update I decided not to work more with beta versions, sorry I have not enough time - Jun 21 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

In the next update will include it, the dark panel is included in my other theme GrayDay
http://gnome-look.org/content/show.php/GrayDay?content=149310

For now what you can do is download GrayDay and copy the file
../GrayDay/gtk-3.0/unity-darkest.css in ../Adwaita Cupertino L Unity/gtk-3.0/

then edit (gedit) the file ../Adwaita Cupertino L Unity/gtk-3.0/gtk.css and find (about line 218)
@import url("unity.css");
and replace with
@import url("unity-darkest.css");

good luck :) - Jun 20 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

Sorry the delay in responding, I've been traveling and I could not

It's something I've tried but have not found a way to do it, Metacity manages mouse-hover in one button simultaneously - Jun 20 2012
Gela

Gnome Shell Themes by golan 38 comments


Thanks for sharing such a good job :) - Jun 14 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

If you edit gtkrc with gedit, in gedit select options 'show line numbers', and check the line 703, is the line where the error is occurring. - Jun 10 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

I have the feeling that you have edited the gtkrc file and made ​​a small syntax error. - Jun 10 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

Yes I know the trick, but I do not know why, but I assumed that had the theme installed in /usr/share/themes

It is because of stress, too many themes to maintain, and the tendency to assume that people know how to do everything necessary to run a theme, sorry :) - Jun 05 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

Unfortunately it is not possible, I've tried many times, remove bold in nautilus, but I could not. Same for other widgets, in theory should be able to do, but I have not gotten results - Jun 05 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

same for Adwaita Cupertino

https://dl.dropbox.com/u/80497678/Captura_de_pantalla_de_2012-05-31_18_22_49.png - May 31 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

something is wrong with your installation or if you changed the color scheme in gtkrc possibly made ​​an error of syntax

https://dl.dropbox.com/u/80497678/Captura_de_pantalla_de_2012-05-31_18_08_15.png - May 31 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

The first version was made with the adwaita-engine, was a later version when adapted to unico-engine.

But yes, I should rethink rename it, on the other hand ;),the change I made from your gnome-shell theme is not here, is in GrayDay,

http://gnome-look.org/content/show.php/GrayDay?content=149310


- May 31 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

sorry!, on the line ¡¡225!! are the options for tabs - May 30 2012
Gnome Cupertino

GTK3/4 Themes by trastes 586 comments

that color is customizable in the menu of LibreOffice
Tools-> Options-> Appearance
The first color customizable is "Document background", by default is "Automatic", there you can select the color you want.

However, if you prefer darker tones, I would recommend my other two themes
GrayDay, it's a little darker
http://gnome-look.org/content/show.php/GrayDay?content=149310

MediterraneanNight, has three levels of brightness, MediterranenanLight-Night-Dark, all are darker than Adw. Cup.
http://gnome-look.org/content/show.php/MediterraneanNight?content=148398
- May 30 2012
GrayDay

GTK3/4 Themes by trastes 104 comments

No tengo ni idea, no lo he probado. Si te animas y lo pruebas comenta como te ha ido.

Saludos :) - May 30 2012