Coverage for apio/common/apio_styles.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-11-06 10:20 +0000

1# -*- coding: utf-8 -*- 

2# -- This file is part of the Apio project 

3# -- (C) 2016-2018 FPGAwars 

4# -- Author Jesús Arroyo 

5# -- License GPLv2 

6# -- Derived from: 

7# ---- Platformio project 

8# ---- (C) 2014-2016 Ivan Kravets <me@ikravets.com> 

9# ---- License Apache v2 

10"""A file that defines and export the apio style names.""" 

11 

12# -- Overriding highlights. 

13STRING = "repr.str" 

14CODE = "code" 

15URL = "repr.url" 

16 

17# -- Apio's own abstract styles, 

18CMD_NAME = "apio.cmd_name" 

19TITLE = "apio.title" 

20BORDER = "apio.border" 

21EMPH1 = "apio.emph1" 

22EMPH2 = "apio.emph2" 

23EMPH3 = "apio.emph3" 

24SUCCESS = "apio.success" 

25INFO = "apio.info" 

26WARNING = "apio.warning" 

27ERROR = "apio.error"