forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.ts
More file actions
40 lines (39 loc) · 945 Bytes
/
theme.ts
File metadata and controls
40 lines (39 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import codesandbox from '../themes/codesandbox.json';
import { media, sizes } from './breakpoints';
import { createTheme } from './createTheme';
import * as fonts from './fonts';
export const theme = {
...createTheme({
background: '#24282A',
background2: '#1C2022',
background3: '#374140',
background4: '#141618',
background5: '#111518', // Less brown version
primary: '#FFD399',
primaryText: '#7F694C',
lightText: '#F2F2F2',
secondary: '#40A9F3',
shySecondary: '#66b9f4',
darkBlue: '#1081D0',
white: '#E0E0E0',
gray: '#C0C0C0',
black: '#74757D',
green: '#5da700',
redBackground: '#400000',
red: '#F27777',
dangerBackground: '#DC3545',
sidebar: '#191d1f',
placeholder: '#B8B9BA',
}),
vscodeTheme: codesandbox,
new: {
...createTheme({
title: '#EEEEFF',
description: '#777788',
bg: '#2B2E41',
}),
},
fonts,
media,
sizes,
};