Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / framework / src / styles / att.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18
19 import { createTheme, adaptV4Theme } from '@mui/material/styles';
20
21 const theme = createTheme(adaptV4Theme({
22   design: {
23     id: "att",
24     name: "AT&T",
25     url: "https://pmcvariety.files.wordpress.com/2016/04/att_logo.jpg?w=1000&h=563&crop=1",
26     height: 70,
27     width: 150,
28     logoHeight: 60,
29   },
30   palette: {
31     primary: {
32       light: "#f2f2f29c",
33       main: "#f2f2f2",
34       dark: "#d5d5d5",
35       contrastText: "#0094d3"
36     },
37     secondary: {
38       light: "#f2f2f2",
39       main: "rgba(51, 171, 226, 1)",
40       dark: "rgba(41, 159, 213, 1)",
41       contrastText: "#0094d3"
42     }
43   },
44 }));
45
46 export default theme;