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
$white: #ffffff; | |
$black: #000000; | |
$red50: #ffebee; | |
$red100: #ffcdd2; | |
$red200: #ef9a9a; | |
$red300: #e57373; | |
$red400: #ef5350; | |
$red500: #f44336; | |
$red600: #e53935; | |
$red700: #d32f2f; |
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
from kivy.animation import Animation | |
from kivy.graphics import CanvasBase | |
from kivy.graphics import Color | |
from kivy.graphics import Ellipse | |
from kivy.graphics import ScissorPush | |
from kivy.graphics import ScissorPop | |
from kivy.properties import ListProperty | |
from kivy.properties import NumericProperty | |
from kivy.uix.relativelayout import RelativeLayout |