Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6544239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:26:31+00:00 2026-05-25T11:26:31+00:00

I am trying to set a colour to highlight a button. However, the modify_fg

  • 0

I am trying to set a colour to highlight a button. However, the modify_fg method only seems to set the focus ring’s colour. modify_bg works as expected.

This is my code:

use Gtk2 qw/-init/;

my $window = Gtk2::Window->new;
$window->set_title("Window!");

my $button = Gtk2::Button->new("Coloured _button");
# does not affect text
$button->modify_fg(normal => Gtk2::Gdk::Color->new(0xffff, 0, 0));

$window->add($button);
$window->show_all;

Gtk2->main;

I’m also interested whether there is a standard colour for this sort of highlight, to blend in with the user’s theme.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T11:26:31+00:00Added an answer on May 25, 2026 at 11:26 am

    you can get the button’s child label and modify its foreground, below is an example (python, let me know if there are troubles converting it to perl)

    import gtk        
    
    class TestWindow:
        def __init__(self):
            window = gtk.Window(gtk.WINDOW_TOPLEVEL)
    
            box = gtk.VBox()
    
            button0 = gtk.Button("Test Button")
            label0 = button0.get_children()[0]
            label0.modify_fg(gtk.STATE_NORMAL, gtk.gdk.color_parse('red'))
    
            button1 = gtk.Button(stock=gtk.STOCK_ABOUT)
            alignment = button1.get_children()[0]
            hbox = alignment.get_children()[0]
            image, label1 = hbox.get_children()
            label1.modify_fg(gtk.STATE_NORMAL, gtk.gdk.color_parse('blue'))
    
            box.add(button0)
            box.add(button1)
    
            window.add(box)
            window.set_size_request(200, 200)
            window.show_all()        
    
        def close_application(self, widget, event, data=None):
            gtk.main_quit()
            return False
    
    if __name__ == "__main__":
        TestWindow()
        gtk.main()
    

    hope this helps, regards

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to change the colour of an Expander's expand button, and it seems
I am trying to set a colour of an ellipse object in code behind.
I am currently trying to set up a heatmap of a matrix and highlight
I'm trying to set the shadow colour on a UIButton, but all I seem
I have been trying to find out how to get and set the colour
I am trying to set the text colour programatically from a colour resource during
I am trying to set the background color for a double spin box, and
I am trying to set the row background color for the advanced data grid
Im trying set the single table inheritance model type in a form. So i
I am trying set up databinding as described in the title. The problem I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.