blob: 177e265e58a3704268ebfb0c6fc80d331b713bd8 (
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/compiler.svg';
import { ContextInterface } from './index';
export const context: ContextInterface = {
title: 'sol-compiler',
name: 'compiler',
subtitle: 'Solidity compilation that just works',
tagline: 'Seamlessly compile an entire solidity project and generate customisable artifacts',
icon: Icon,
colors: {
main: '#1EADCD',
secondary: '#D1F4FC',
secondary_alt: '#C4F2FC',
type: '#30C3E3',
type_alt: '#16A9C9',
dark: '#4B818D',
},
};
|