Projekt

Obecné

Profil

Stáhnout (772 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { extendTheme } from "native-base"
2

    
3
export const nativeBaseTheme = extendTheme({
4
    colors: {
5
        primary: {
6
            50: '#FFFFFF',
7
            100: '#F5F4F1',
8
            200: '#8F8F8F',
9
            300: '#8F6A0A',
10
            400: '#654B07',
11
            500: '#654B07',
12
            600: '#654B07',
13
            700: '#654B07',
14
            800: '#654B07',
15
            900: '#654B07',
16
        },
17
        secondary: {
18
            50: '#FFF8E1',
19
            100: '#F4DFAB',
20
            200: '#F4DFAB',
21
            300: '#F4DFAB',
22
            400: '#F4DFAB',
23
            500: '#F4DFAB',
24
            600: '#F4DFAB',
25
            700: '#F4DFAB',
26
            800: '#FFD54F',
27
            900: '#654B07',
28
        },
29
        buttonBackground: 'secondary.500'
30
    }
31
})
    (1-1/1)