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

import { ContextInterface } from './index';

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