aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/coverage.tsx
blob: 3e44b6ec234ad10b4e3a6b9226c14a1a253ad6c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Icon from 'ts/icons/logos/cov.svg';

import { ContextInterface } from './index';

export const context: ContextInterface = {
    title: 'sol-coverage',
    name: 'coverage',
    subtitle: 'Solidity code coverage',
    docLink: 'https://0x.org/docs/sol-coverage',
    tagline: 'Measure Solidity code coverage',
    icon: Icon,
    colors: {
        main: '#BB9200',
        secondary: '#F1DB8D',
        secondary_alt: '#F1D882',
        type: '#D7AE1B',
        type_alt: '#BD9406',
        dark: '#817033',
    },
};