aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/utils/colors.ts
blob: 886cfe64eb75fd0655746be36b771ff82fb57c46 (plain) (blame)
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
import {colors as materialUiColors} from 'material-ui/styles';

export const colors = {
    ...materialUiColors,
    beigeWhite: '#E4E4E4',
    grayishPink: '#E6E5E5',
    lightGrey: '#BBBBBB',
    gray: '#A5A5A5',
    darkGray: '#818181',
    darkerGray: '#393939',
    heroGray: '#404040',
    projectsGray: '#343333',
    landingLinkGray: '#919191',
    darkestGray: '#272727',
    dharmaDarkGray: '#252525',
    lightBlue: '#60A4F4',
    darkBlue: '#4D5481',
    lightPurple: '#A81CA6',
    purple: '#690596',
    red: '#E91751',
    turquois: '#058789',
    orange: '#E69D00',
    lightestGreen: '#89C774',
    lightGreen: '#4DC55C',
    limeGreen: '#66DE75',
    green: '#4DA24B',
    brightGreen: '#00C33E',
};