UNPKG
@webwriter/automaton
Version:
latest (3.0.1)
3.0.1
3.0.0
2.1.1
2.1.0
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.3
1.0.1
1.0.0
0.8.0
Build, visualize, and interact with different kinds of automata (DFA, NFA, PDA).
@webwriter/automaton
/
src
/
utils
/
colors.ts
19 lines
(18 loc)
•
335 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export
const
COLORS
=
{
red:
{
background:
'#fee2e2'
,
border:
'#991b1b'
, },
green:
{
background:
'#ecfccb'
,
border:
'#3f6212'
, },
blue:
{
background:
'#e0f2fe'
,
border:
'#075985'
, },
standard:
{
background:
'white'
,
border:
'black'
, }, }
;