diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/context')
-rw-r--r-- | packages/dev-tools-pages/ts/context/compiler.tsx | 20 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/coverage.tsx | 20 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/index.tsx | 22 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/profiler.tsx | 20 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/trace.tsx | 20 |
5 files changed, 0 insertions, 102 deletions
diff --git a/packages/dev-tools-pages/ts/context/compiler.tsx b/packages/dev-tools-pages/ts/context/compiler.tsx deleted file mode 100644 index e4642c826..000000000 --- a/packages/dev-tools-pages/ts/context/compiler.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import Icon from 'ts/icons/logos/compiler.svg'; - -import { ContextInterface } from './index'; - -export const context: ContextInterface = { - title: 'sol-compiler', - name: 'compiler', - docLink: 'https://0x.org/docs/sol-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', - }, -}; diff --git a/packages/dev-tools-pages/ts/context/coverage.tsx b/packages/dev-tools-pages/ts/context/coverage.tsx deleted file mode 100644 index 3e44b6ec2..000000000 --- a/packages/dev-tools-pages/ts/context/coverage.tsx +++ /dev/null @@ -1,20 +0,0 @@ -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', - }, -}; diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx deleted file mode 100644 index 97ccf5c16..000000000 --- a/packages/dev-tools-pages/ts/context/index.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import { createContext } from 'react'; - -interface ContextInterface { - title?: string; - name?: string; - docLink?: string; - subtitle?: string; - tagline?: string; - icon?: React.ReactNode; - colors?: { - main: string; - secondary: string; - secondary_alt: string; - type: string; - type_alt: string; - dark: string; - }; -} - -const ThemeContext = createContext({}); - -export { ThemeContext, ContextInterface }; diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx deleted file mode 100644 index e2ddcb230..000000000 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import Icon from 'ts/icons/logos/profiler.svg'; - -import { ContextInterface } from './index'; - -export const context: ContextInterface = { - title: 'sol-profiler', - name: 'profiler', - docLink: 'https://0x.org/docs/sol-profiler', - subtitle: 'Gas profiling for Solidity', - tagline: "Implement data-guided optimizations by profiling your contract's gas usage", - icon: Icon, - colors: { - main: '#FF7144', - secondary: '#FED7CB', - secondary_alt: '#FECEBE', - type: '#EB8666', - type_alt: '#D16745', - dark: '#985C49', - }, -}; diff --git a/packages/dev-tools-pages/ts/context/trace.tsx b/packages/dev-tools-pages/ts/context/trace.tsx deleted file mode 100644 index 3c19661f2..000000000 --- a/packages/dev-tools-pages/ts/context/trace.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import Icon from 'ts/icons/logos/trace.svg'; - -import { ContextInterface } from './index'; - -export const context: ContextInterface = { - title: 'sol-trace', - name: 'trace', - subtitle: 'Human-readable stack traces', - docLink: 'https://0x.org/docs/sol-trace', - tagline: 'Immediately locate Solidity errors and rapidly debug failed transactions', - icon: Icon, - colors: { - main: '#4F76FF', - secondary: '#CDD8FF', - secondary_alt: '#BFCDFF', - type: '#7090FF', - type_alt: '#355CE5', - dark: '#2A4ABC', - }, -}; |