ではラベルの文字の色を変えてみましょうか。
foreground='カラーコード'
をLabelに指定することで、文字の色を変更することができます。
Python 2.x系
#-*- coding: utf8 -*-
import sys
import Tkinter as tk
root = tk.Tk()
# ウインドウのタイトルを定義する
root.title(u'Labelを使ってみる')
# ここでウインドウサイズを定義する
root.geometry('400x300')
# ラベルを使って文字を画面上に出す
Static1 = tk.Label(text=u'test', foreground='#ff0000')
Static1.pack()
root.mainloop()
Python 3.x系
#-*- coding: utf8 -*-
import sys
import tkinter as tk
root = tk.Tk()
# ウインドウのタイトルを定義する
root.title(u'Labelを使ってみる')
# ここでウインドウサイズを定義する
root.geometry('400x300')
# ラベルを使って文字を画面上に出す
Static1 = tk.Label(text=u'test', foreground='#ff0000')
Static1.pack()
root.mainloop()
文字色が赤色にかわりましたね!