-
Notifications
You must be signed in to change notification settings - Fork 0
1. First Script
Yazid Slila edited this page Feb 1, 2022
·
1 revision
open global
set mycolor #007BFF
style div color &mycolor
^ button backgroundColor ^
open : open directory global in read and write mode
set : assign the value "#007BFF" to mycolor in global
style : set the color of div to "#007BFF"
^ : refers to the the value above.
div {
color: #007BFF;
}
button {
background-color: #007BFF;
}