-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-theme-test.dsl
More file actions
53 lines (46 loc) · 917 Bytes
/
custom-theme-test.dsl
File metadata and controls
53 lines (46 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Custom Test Theme - Dark Mode
*/
theme default
// Element styles
styles {
// Dark theme colors
element "Person" {
background #2c3e50
color #ecf0f1
shape Person
fontSize 22
}
element "Software System" {
background #34495e
color #ecf0f1
shape RoundedBox
fontSize 24
}
element "Container" {
background #7f8c8d
color #ffffff
shape RoundedBox
fontSize 20
}
element "Component" {
background #95a5a6
color #2c3e50
shape RoundedBox
fontSize 18
}
element "External" {
background #c0392b
color #ffffff
shape RoundedBox
fontSize 22
}
// Relationship styles
relationship "Relationship" {
color #bdc3c7
dashed false
routing Curved
fontSize 12
thickness 2
}
}