Open In App

Python – Change button color in kivy using .kv file

Last Updated : 14 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Kivy is a platform independent GUI tool in Python. As it can be run on Android, IOS, Linux and Windows, etc. It is basically used to develop the Android application, but it does not mean that it can not be used on Desktops applications. In this article we will learn how to change the background color of button in kivy in .kv file.

background_color: There is a property name background color which is used to change the color of the button in kivy python. The background-color kivy property sets the background color of an element. The background-color property is specified as a single color value. Syntax: background_color: 1, 0, 0, 1

Note: By default the color of button is black and it only takes the value between 0 to 1

Basic Approach:

1) import kivy
2) import kivyApp
3) import Widget
4) import Button
5) Set minimum version(optional)
6) Create widget class
7) create App class
8) create .kv file (name same as the app class):
        1) Create Widget
        2) Create Button
        3) set the background color of the button as you want   
        4) Specify requirements
9) return Layout/widget/Class(according to requirement)
10) Run an instance of the class

Kivy Tutorial – Learn Kivy with Examples.

Code to implement the above Approach to color the button using kv file. .py file 

Python3




## Sample Python application demonstrating the
## How to change button color in Kivy using .kv file
 
###################################################
# import modules
import kivy
 
# base Class of your App inherits from the App class.
# app:always refers to the instance of your application
from kivy.app import App
 
# This layout allows you to set relative coordinates for children.
from kivy.uix.relativelayout import RelativeLayout
 
# To change the kivy default settings
# we use this module config
from kivy.config import Config
 
# creating the root widget used in .kv file
class RelativeLayout(RelativeLayout):
    pass
 
# creating the App class in which name
#.kv file is to be named Btn.kv
class BtnApp(App):
    # defining build()
    def build(self):
        # returning the instance of root class
        return RelativeLayout()
 
# run the app
if __name__ == "__main__":
    BtnApp().run()


Btn.kv file implementation of main.py file 

Python3




#.kv file implementation of color btn
 
<RelativeLayout>:
 
    Button:
         
        text:"Colorful"
        # Change the default color to your choice
        background_color: 0.1, 0.5, 0.6, 1
        pos_hint: {"x":0.2, "y":.4}
        size_hint: 0.3, 0.2
 
 
    Button:
        text:"Default"
 
        # The default color of a button
        background_color: 1, 1, 1, 1
        pos_hint: {"x":.6, "y":.4}
        size_hint: 0.3, 0.2
 
                    


Output:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads