{
  "metadata": {
    "language": "typescript",
    "generator": "typedoc",
    "framework": "angular"
  },
  "classes": [
    {
      "kind": "interface",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbEmailPassModuleConfig",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [
        {
          "shortDescription": "",
          "description": "Default settings object:",
          "code": "\n{\n baseEndpoint: '',\n login: {\n   alwaysFail: false,\n   rememberMe: true,\n   endpoint: '/api/auth/login',\n   method: 'post',\n   redirect: {\n     success: '/',\n     failure: null,\n   },\n   defaultErrors: ['Login/Email combination is not correct, please try again.'],\n   defaultMessages: ['You have been successfully logged in.'],\n },\n register: {\n   alwaysFail: false,\n   rememberMe: true,\n   endpoint: '/api/auth/register',\n   method: 'post',\n   redirect: {\n     success: '/',\n     failure: null,\n   },\n   defaultErrors: ['Something went wrong, please try again.'],\n   defaultMessages: ['You have been successfully registered.'],\n },\n logout: {\n   alwaysFail: false,\n   endpoint: '/api/auth/logout',\n   method: 'delete',\n   redirect: {\n     success: '/',\n     failure: null,\n   },\n   defaultErrors: ['Something went wrong, please try again.'],\n   defaultMessages: ['You have been successfully logged out.'],\n },\n requestPass: {\n   endpoint: '/api/auth/request-pass',\n   method: 'post',\n   redirect: {\n     success: '/',\n     failure: null,\n   },\n   defaultErrors: ['Something went wrong, please try again.'],\n   defaultMessages: ['Reset password instructions have been sent to your email.'],\n },\n resetPass: {\n   endpoint: '/api/auth/reset-pass',\n   method: 'put',\n   redirect: {\n     success: '/',\n     failure: null,\n   },\n   resetPasswordTokenKey: 'reset_password_token',\n   defaultErrors: ['Something went wrong, please try again.'],\n   defaultMessages: ['Your password has been successfully changed.'],\n },\n token: {\n   key: 'data.token',\n   getter: (module: string, res: HttpResponse<Object>) => getDeepFromObject(res.body,\n     this.getConfigValue('token.key')),\n },\n errors: {\n   key: 'data.errors',\n   getter: (module: string, res: HttpErrorResponse) => getDeepFromObject(res.error,\n     this.getConfigValue('errors.key'),\n     this.getConfigValue(`${module}.defaultErrors`)),\n },\n messages: {\n   key: 'data.messages',\n   getter: (module: string, res: HttpResponse<Object>) => getDeepFromObject(res.body,\n     this.getConfigValue('messages.key'),\n     this.getConfigValue(`${module}.defaultMessages`)),\n },\n}\n\n// Note, there is no need to copy over the whole object to change the settings you need.\n// Also, this.getConfigValue call won't work outside ofthe default config declaration\n// (which is inside of the `NbEmailPassAuthProvider` class), so you have to replace it with a custom helper function\n// if you need it.\n"
        }
      ],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "http",
              "type": "HttpClient",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "route",
              "type": "ActivatedRoute",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbEmailPassAuthProvider"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "authenticate",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "createFailResponse",
          "type": [
            "HttpResponse"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "createSuccessResponse",
          "type": [
            "HttpResponse"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "action",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getActionEndpoint",
          "type": [
            "string"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "key",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getConfigValue",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "res",
              "type": "HttpResponse",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getJsonSafe",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "logout",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "register",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "requestPassword",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "data",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "resetPassword",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "config",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "setConfig",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbEmailPassAuthProvider",
      "shortDescription": "The most common authentication provider for email/password strategy.",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "tokenService",
              "type": "NbTokenService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "injector",
              "type": "Injector",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "providers",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbAuthService"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null
            },
            {
              "name": "data",
              "type": "any",
              "required": null
            }
          ],
          "platform": null,
          "name": "authenticate",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Authenticates with the selected provider\nStores received token in the token storage",
          "description": "Example:\nauthenticate('email', {email: 'email@example.com', password: 'test'})\n"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getProvider",
          "type": [
            "NbAbstractAuthProvider"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getToken",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Retrieves current authenticated token stored"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "isAuthenticated",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns true if auth token is presented in the token storage\n// TODO: check exp date for JWT token"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null
            }
          ],
          "platform": null,
          "name": "logout",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Sign outs with the selected provider\nRemoves token from the token storage",
          "description": "Example:\nlogout('email')\n"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onAuthenticationChange",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns authentication status stream\n // TODO: check exp date for JWT token"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onTokenChange",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns tokens stream"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null
            },
            {
              "name": "data",
              "type": "any",
              "required": null
            }
          ],
          "platform": null,
          "name": "register",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Registers with the selected provider\nStores received token in the token storage",
          "description": "Example:\nregister('email', {email: 'email@example.com', name: 'Some Name', password: 'test'})\n"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null
            },
            {
              "name": "data",
              "type": "any",
              "required": null
            }
          ],
          "platform": null,
          "name": "requestPassword",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Sends forgot password request to the selected provider",
          "description": "Example:\nrequestPassword('email', {email: 'email@example.com'})\n"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "provider",
              "type": "string",
              "required": null
            },
            {
              "name": "data",
              "type": "any",
              "required": null
            }
          ],
          "platform": null,
          "name": "resetPassword",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Tries to reset password with the selected provider",
          "description": "Example:\nresetPassword('email', {newPassword: 'test'})\n"
        }
      ],
      "name": "NbAuthService",
      "shortDescription": "Common authentication service.\nShould be used to as an interlayer between UI Components and Auth Providers.",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getPayload",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "TODO: check for this.token to be not null\nReturns payload object"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getTokenExpDate",
          "type": [
            "Date"
          ],
          "isStatic": false,
          "shortDescription": "Returns expiration date"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getValue",
          "type": [
            "string"
          ],
          "isStatic": false,
          "shortDescription": "Returns the token value"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "token",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "setValue",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbAuthJWTToken",
      "shortDescription": "Wrapper for JWT token with additional methods.",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getValue",
          "type": [
            "string"
          ],
          "isStatic": false,
          "shortDescription": "Returns the token value"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "token",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "setValue",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbAuthSimpleToken",
      "shortDescription": "Wrapper for simple (text) token",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [
        {
          "shortDescription": "Injecting NbAuthJWTToken, so that NbTokenService will now return NbAuthJWTToken instead\nof the default NbAuthSimpleToken",
          "description": "",
          "code": "\n// import token and service into your AppModule\nimport { NB_AUTH_TOKEN_WRAPPER_TOKEN,  NbAuthJWTToken} from '@nebular/auth';\n\n// add to a list of providers\nproviders: [\n // ...\n { provide: NB_AUTH_TOKEN_WRAPPER_TOKEN, useClass: NbAuthJWTToken },\n],\n"
        }
      ],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "options",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "tokenWrapper",
              "type": "NbAuthSimpleToken",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbTokenService"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "clear",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Removes the token"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "get",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns observable of current token"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "key",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getConfigValue",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "token",
              "type": "NbAuthSimpleToken",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "publishToken",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "rawToken",
              "type": "string",
              "required": null
            }
          ],
          "platform": null,
          "name": "set",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Sets the token into the storage. This method is used by the NbAuthService automatically."
        },
        {
          "examples": [],
          "params": [
            {
              "name": "config",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "setConfig",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "tokenChange",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Publishes token when it changes."
        }
      ],
      "name": "NbTokenService",
      "shortDescription": "Nebular token service. Provides access to the stored token.\nBy default returns NbAuthSimpleToken instance,\nbut you can inject NbAuthJWTToken if you need additional methods for JWT token.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "icon",
          "shortDescription": "Icon class to display"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "disabled",
          "shortDescription": "Disables the item (changes item opacity and mouse cursor)"
        }
      ],
      "methods": [],
      "name": "NbActionComponent",
      "shortDescription": "Action item, display a link with an icon, or any other content provided instead.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "fullWidth",
          "shortDescription": "Component will fill full width of the container"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "inverse",
          "shortDescription": "Makes colors inverse based on current theme"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "size",
          "shortDescription": "Size of the component, small|medium|large"
        }
      ],
      "methods": [],
      "name": "NbActionsComponent",
      "shortDescription": "Shows a horizontal list of actions, available in multiple sizes\nAligns items vertically.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "actions-font-size",
              "description": ""
            },
            {
              "name": "actions-font-family",
              "description": ""
            },
            {
              "name": "actions-line-height",
              "description": ""
            },
            {
              "name": "actions-fg",
              "description": ""
            },
            {
              "name": "actions-bg",
              "description": ""
            },
            {
              "name": "actions-separator",
              "description": ""
            },
            {
              "name": "actions-padding",
              "description": ""
            },
            {
              "name": "actions-size-small",
              "description": ""
            },
            {
              "name": "actions-size-medium",
              "description": ""
            },
            {
              "name": "actions-size-large",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbCardBodyComponent",
      "shortDescription": "Component intended to be used within  the `<nb-card>` component.\nAdds styles for a preset body section.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "",
          "description": "",
          "code": "\n<nb-card-header></nb-card-header>\n<nb-card-body></nb-card-body>\n<nb-card-footer></nb-card-footer>\n"
        }
      ],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "setSize",
          "shortDescription": "Card size, available sizes:\nxxsmall, xsmall, small, medium, large, xlarge, xxlarge"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "setStatus",
          "shortDescription": "Card status (adds specific styles):\nactive, disabled, primary, info, success, warning, danger"
        }
      ],
      "methods": [],
      "name": "NbCardComponent",
      "shortDescription": "Basic content container component.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "card-line-height",
              "description": ""
            },
            {
              "name": "card-font-weight",
              "description": ""
            },
            {
              "name": "card-fg-text",
              "description": ""
            },
            {
              "name": "card-bg",
              "description": ""
            },
            {
              "name": "card-height-xxsmall",
              "description": ""
            },
            {
              "name": "card-height-xsmall",
              "description": ""
            },
            {
              "name": "card-height-small",
              "description": ""
            },
            {
              "name": "card-height-medium",
              "description": ""
            },
            {
              "name": "card-height-large",
              "description": ""
            },
            {
              "name": "card-height-xlarge",
              "description": ""
            },
            {
              "name": "card-height-xxlarge",
              "description": ""
            },
            {
              "name": "card-shadow",
              "description": ""
            },
            {
              "name": "card-border-radius",
              "description": ""
            },
            {
              "name": "card-padding",
              "description": ""
            },
            {
              "name": "card-margin",
              "description": ""
            },
            {
              "name": "card-separator",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbCardFooterComponent",
      "shortDescription": "Component intended to be used within  the `<nb-card>` component.\nAdds styles for a preset footer section.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbCardHeaderComponent",
      "shortDescription": "Component intended to be used within  the `<nb-card>` component.\nIt adds styles for a preset header section.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "card-header-font-family",
              "description": ""
            },
            {
              "name": "card-header-font-size",
              "description": ""
            },
            {
              "name": "card-header-font-weight",
              "description": ""
            },
            {
              "name": "card-header-fg",
              "description": ""
            },
            {
              "name": "card-header-fg-heading",
              "description": ""
            },
            {
              "name": "card-header-active-bg",
              "description": ""
            },
            {
              "name": "card-header-active-fg",
              "description": ""
            },
            {
              "name": "card-header-disabled-bg",
              "description": ""
            },
            {
              "name": "card-header-primary-bg",
              "description": ""
            },
            {
              "name": "card-header-info-bg",
              "description": ""
            },
            {
              "name": "card-header-success-bg",
              "description": ""
            },
            {
              "name": "card-header-warning-bg",
              "description": ""
            },
            {
              "name": "card-header-danger-bg",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "Basic example",
          "description": "",
          "code": "\n <nb-checkbox [(ngModel)]=\"enabled\">Enabled?</nb-checkbox>\n"
        },
        {
          "shortDescription": "Example with status",
          "description": "",
          "code": "\n <nb-checkbox [(ngModel)]=\"enabled\" status=\"danger\">Enabled?</nb-checkbox>\n"
        }
      ],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "_value",
          "shortDescription": "Checkbox value"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "setStatus",
          "shortDescription": "Checkbox status (success, warning, danger)"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onChange",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onTouched",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "fn",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "registerOnChange",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "fn",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "registerOnTouched",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "val",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "writeValue",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbCheckboxComponent",
      "shortDescription": "Styled checkbox component",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "checkbox-bg",
              "description": ""
            },
            {
              "name": "checkbox-size",
              "description": ""
            },
            {
              "name": "checkbox-border-size",
              "description": ""
            },
            {
              "name": "checkbox-border-color",
              "description": ""
            },
            {
              "name": "checkbox-selected-border-color",
              "description": ""
            },
            {
              "name": "checkbox-fg",
              "description": ""
            },
            {
              "name": "radio-fg",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "",
          "description": "",
          "code": "\n<nb-layout>\n  <nb-layout-column>Second</nb-layout-column>\n  <nb-layout-column>Third</nb-layout-column>\n  <nb-layout-column left>First</nb-layout-column>\n</nb-layout>\n"
        }
      ],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "left",
          "shortDescription": "Move the column to the very left position in the layout."
        }
      ],
      "methods": [],
      "name": "NbLayoutColumnComponent",
      "shortDescription": "A container component which determines a content position inside of the layout.\nThe layout could contain unlimited columns (not including the sidebars).",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "A simple layout example:",
          "description": "  <nb-layout-column>\n    Hello World!\n  </nb-layout-column>",
          "code": "\n<nb-layout>\n  <nb-layout-header>Great Company</nb-layout-header>\n\n  <nb-layout-column>\n    Hello World!\n  </nb-layout-column>\n\n  <nb-layout-footer>Contact us</nb-layout-footer>\n</nb-layout>\n"
        },
        {
          "shortDescription": "For example, it is possible to ask the layout to center the columns (notice: we added a `center` attribute\nto the layout:",
          "description": "  <nb-layout-column>\n    Hello World!\n  </nb-layout-column>",
          "code": "\n<nb-layout center>\n  <nb-layout-header>Great Company</nb-layout-header>\n\n  <nb-layout-column>\n    Hello World!\n  </nb-layout-column>\n\n  <nb-layout-footer>Contact us</nb-layout-footer>\n</nb-layout>\n"
        }
      ],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "center",
          "shortDescription": "Defines whether the layout columns will be centered after some width"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "windowMode",
          "shortDescription": "Defines whether the layout enters a 'window' mode, when the layout content (including sidebars and fixed header)\nbecomes centered by width with a margin from the top of the screen, like a floating window.\nAutomatically enables `withScroll` mode, as in the window mode scroll must be inside the layout and cannot be on\nwindow. (TODO: check this)"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "withScroll",
          "shortDescription": "Defines whether to move the scrollbars to layout or leave it at the body level.\nAutomatically set to true when `windowMode` is enabled."
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "themeService",
              "type": "NbThemeService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "spinnerService",
              "type": "NbSpinnerService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "componentFactoryResolver",
              "type": "ComponentFactoryResolver",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "elementRef",
              "type": "ElementRef",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "renderer",
              "type": "Renderer2",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbLayoutComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngAfterViewInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnDestroy",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "event",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onResize",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbLayoutComponent",
      "description": "Can contain the following components inside:\n\n```\nnb-layout-header\nnb-layout-column\nnb-sidebar\nnb-layout-footer\n```\n\nBy default the layout fills up the full view-port.\nThe window scrollbars are disabled on the body and moved inside of the nb-layout, so that the scrollbars\nwon't mess with the fixed nb-header.\n\nThe children components are projected into the flexible layout structure allowing to adjust the layout behavior\nbased on the settings provided.\n\nThe layout content (columns) becomes centered when the window width is more than\nthe value specified in the theme variable `layout-content-width`.\n\nThe layout also contains the area on the very top (the first child of the nb-layout), which could be used\nto dynamically append some components like modals or spinners/loaders\nso that they are located on top of the elements hierarchy.\nMore details are below under the `ThemeService` section.\n\nThe layout component is also responsible for changing of the application themes.\nIt listens to the `themeChange` event and change the theme CSS class appended to body.\nBased on the class appended a specific CSS-theme is applied to the application.\nMore details of the Theme System could be found here [Enabling Theme System](#/docs/concepts/theme-system)\n",
      "shortDescription": "The general Nebular component-container.\nIt is required that all children component of the framework are located inside of the nb-layout.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "layout-font-family",
              "description": ""
            },
            {
              "name": "layout-font-size",
              "description": ""
            },
            {
              "name": "layout-line-height",
              "description": ""
            },
            {
              "name": "layout-fg",
              "description": ""
            },
            {
              "name": "layout-bg",
              "description": ""
            },
            {
              "name": "layout-min-height",
              "description": ""
            },
            {
              "name": "layout-content-width",
              "description": ""
            },
            {
              "name": "layout-window-mode-min-width",
              "description": ""
            },
            {
              "name": "layout-window-mode-max-width",
              "description": "window mode only, after this value layout turns into floating window"
            },
            {
              "name": "layout-window-mode-bg",
              "description": "window mode only, background"
            },
            {
              "name": "layout-window-mode-padding-top",
              "description": "window mode only, max padding from top"
            },
            {
              "name": "layout-window-shadow",
              "description": "window mode shadow"
            },
            {
              "name": "layout-padding",
              "description": ""
            },
            {
              "name": "layout-medium-padding",
              "description": ""
            },
            {
              "name": "layout-small-padding",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "fixed",
          "shortDescription": "Makes the footer sticky to the bottom of the window."
        }
      ],
      "methods": [],
      "name": "NbLayoutFooterComponent",
      "shortDescription": "Page footer.\nLocated under the nb-layout content (specifically, under the columns).\nCould be made `fixed`, becoming sticky to the bottom of the view port (window).",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "footer-height",
              "description": ""
            },
            {
              "name": "footer-padding",
              "description": ""
            },
            {
              "name": "footer-fg",
              "description": ""
            },
            {
              "name": "footer-bg",
              "description": ""
            },
            {
              "name": "footer-separator",
              "description": ""
            },
            {
              "name": "footer-shadow",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "fixed",
          "shortDescription": "Makes the header sticky to the top of the nb-layout."
        }
      ],
      "methods": [],
      "name": "NbLayoutHeaderComponent",
      "shortDescription": "Page header component.\nLocated on top of the page above the layout columns and sidebars.\nCould be made `fixed` by setting the corresponding property. In the fixed mode the header becomes\nsticky to the top of the nb-layout (to of the page).",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "header-font-family",
              "description": ""
            },
            {
              "name": "header-line-height",
              "description": ""
            },
            {
              "name": "header-fg",
              "description": ""
            },
            {
              "name": "header-bg",
              "description": ""
            },
            {
              "name": "header-height",
              "description": ""
            },
            {
              "name": "header-padding",
              "description": ""
            },
            {
              "name": "header-shadow",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "required": null,
          "name": "items",
          "shortDescription": "List of menu items."
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "tag",
          "shortDescription": "Tags a menu with some ID, can be later used in the menu service\nto determine which menu triggered the action, if multiple menus exist on the page."
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "autoCollapse",
          "shortDescription": "Collapse all opened submenus on the toggle event\nDefault value is \"false\""
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "inverse",
          "shortDescription": "Makes colors inverse based on current theme"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "menuInternalService",
              "type": "NbMenuInternalService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "router",
              "type": "Router",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbMenuComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "compareTag",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "items",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getHomeItem",
          "type": [
            "NbMenuItem"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "items",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "getSelectedItem",
          "type": [
            "NbMenuItem"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "navigateHome",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnDestroy",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "item",
              "type": "NbMenuItem",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onHoverItem",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "item",
              "type": "NbMenuItem",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onItemClick",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "item",
              "type": "NbMenuItem",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onSelectItem",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "item",
              "type": "NbMenuItem",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onToggleSubMenu",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbMenuComponent",
      "description": "Accepts a list of menu items and renders them accordingly. Supports multi-level menus.\n",
      "shortDescription": "Vertical menu component.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "menu-font-family",
              "description": ""
            },
            {
              "name": "menu-font-size",
              "description": ""
            },
            {
              "name": "menu-font-weight",
              "description": ""
            },
            {
              "name": "menu-fg",
              "description": ""
            },
            {
              "name": "menu-bg",
              "description": ""
            },
            {
              "name": "menu-active-fg",
              "description": ""
            },
            {
              "name": "menu-active-bg",
              "description": ""
            },
            {
              "name": "menu-active-font-weight",
              "description": ""
            },
            {
              "name": "menu-submenu-bg",
              "description": ""
            },
            {
              "name": "menu-submenu-fg",
              "description": ""
            },
            {
              "name": "menu-submenu-active-fg",
              "description": ""
            },
            {
              "name": "menu-submenu-active-bg",
              "description": ""
            },
            {
              "name": "menu-submenu-active-border-color",
              "description": ""
            },
            {
              "name": "menu-submenu-active-shadow",
              "description": ""
            },
            {
              "name": "menu-submenu-hover-fg",
              "description": ""
            },
            {
              "name": "menu-submenu-hover-bg",
              "description": ""
            },
            {
              "name": "menu-submenu-item-border-width",
              "description": ""
            },
            {
              "name": "menu-submenu-item-border-radius",
              "description": ""
            },
            {
              "name": "menu-submenu-item-padding",
              "description": ""
            },
            {
              "name": "menu-submenu-item-container-padding",
              "description": ""
            },
            {
              "name": "menu-submenu-padding",
              "description": ""
            },
            {
              "name": "menu-group-font-weight",
              "description": ""
            },
            {
              "name": "menu-group-font-size",
              "description": ""
            },
            {
              "name": "menu-group-fg",
              "description": ""
            },
            {
              "name": "menu-group-padding",
              "description": ""
            },
            {
              "name": "menu-item-padding",
              "description": ""
            },
            {
              "name": "menu-item-separator",
              "description": ""
            },
            {
              "name": "menu-icon-font-size",
              "description": ""
            },
            {
              "name": "menu-icon-margin",
              "description": ""
            },
            {
              "name": "menu-icon-color",
              "description": ""
            },
            {
              "name": "menu-icon-active-color",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "class",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "required": null,
          "name": "children",
          "shortDescription": "Children items"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "expanded",
          "shortDescription": "Expanded by defaul"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "group",
          "shortDescription": "Whether the item is just a group (non-clickable)"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "hidden",
          "shortDescription": "Hidden Item"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "home",
          "shortDescription": "Where this is a home item"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "icon",
          "shortDescription": "Icon class name"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "link",
          "shortDescription": "Item relative link (for routerLink)"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "pathMatch",
          "shortDescription": "Item is selected when partly or fully equal to the current url"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "target",
          "shortDescription": "HTML Link target"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "title",
          "shortDescription": "Item Title"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "url",
          "shortDescription": "Item URL (absolute)"
        }
      ],
      "methods": [],
      "name": "NbMenuItem",
      "shortDescription": "Menu Item options\nTODO: check if we need both URL and LINK",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "items",
              "required": null
            },
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "\n"
            }
          ],
          "platform": null,
          "name": "addItems",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Add items to the end of the menu items list"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "tag",
              "type": "string",
              "required": null
            }
          ],
          "platform": null,
          "name": "getSelectedItem",
          "type": [
            ">}"
          ],
          "isStatic": false,
          "shortDescription": "Returns currently selected item. Won't subscribe to the future events."
        },
        {
          "examples": [],
          "params": [
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "\n"
            }
          ],
          "platform": null,
          "name": "navigateHome",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Navigate to the home menu item"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onItemClick",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onItemHover",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onItemSelect",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onSubmenuToggle",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbMenuService",
      "shortDescription": "Menu Service. Allows you to listen to menu events, or to interact with a menu.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "basic usage example",
          "description": "",
          "code": "\n tabs = [\n {\n   title: 'Route tab #1',\n   route: '/pages/description',\n },\n {\n   title: 'Route tab #2',\n   route: '/pages/images',\n   }\n ];\n\n <nb-route-tabset [tabs]=\"tabs\"></nb-route-tabset>\n"
        }
      ],
      "props": [
        {
          "kind": "output",
          "platform": null,
          "isStatic": false,
          "type": "EventEmitter",
          "required": null,
          "name": "changeTab",
          "shortDescription": "Emits when tab is selected"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "required": null,
          "name": "tabs",
          "shortDescription": "Tabs configuration"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "fullWidth",
          "shortDescription": "Take full width of a parent"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "router",
              "type": "Router",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbRouteTabsetComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "tab",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "selectTab",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbRouteTabsetComponent",
      "shortDescription": "Route tabset components.\nRenders tabs inside of a router-outlet.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "route-tabs-font-family",
              "description": ""
            },
            {
              "name": "route-tabs-font-size",
              "description": ""
            },
            {
              "name": "route-tabs-active-bg",
              "description": ""
            },
            {
              "name": "route-tabs-active-font-weight",
              "description": ""
            },
            {
              "name": "route-tabs-padding",
              "description": ""
            },
            {
              "name": "route-tabs-header-bg",
              "description": ""
            },
            {
              "name": "route-tabs-separator",
              "description": ""
            },
            {
              "name": "route-tabs-fg",
              "description": ""
            },
            {
              "name": "route-tabs-fg-heading",
              "description": ""
            },
            {
              "name": "route-tabs-bg",
              "description": ""
            },
            {
              "name": "route-tabs-selected",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "placeholder",
          "shortDescription": "Search input placeholder"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "tag",
          "shortDescription": "Tags a search with some ID, can be later used in the search service\nto determine which search component triggered the action, if multiple searches exist on the page."
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "type",
          "shortDescription": "Search design type, available types are\nmodal-zoomin, rotate-layout, modal-move, curtain, column-curtain, modal-drop, modal-half"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "searchService",
              "type": "NbSearchService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "themeService",
              "type": "NbThemeService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "componentFactoryResolver",
              "type": "ComponentFactoryResolver",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "router",
              "type": "Router",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbSearchComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "componentRef",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "connectToSearchField",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "component",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "createAttachedSearch",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngAfterViewInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnDestroy",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "openSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbSearchComponent",
      "shortDescription": "Beautiful full-page search control.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "search-btn-open-fg",
              "description": ""
            },
            {
              "name": "search-btn-close-fg",
              "description": ""
            },
            {
              "name": "search-bg",
              "description": ""
            },
            {
              "name": "search-bg-secondary",
              "description": ""
            },
            {
              "name": "search-text",
              "description": ""
            },
            {
              "name": "search-info",
              "description": ""
            },
            {
              "name": "search-dash",
              "description": ""
            },
            {
              "name": "search-placeholder",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "closeSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "term",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "submitSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbSearchFieldComponent",
      "shortDescription": "search-field-component is used under the hood by nb-search component\ncan't be used itself",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "searchType",
              "type": "string",
              "required": null
            },
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "\n"
            }
          ],
          "platform": null,
          "name": "activateSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Activate (open) search component"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "searchType",
              "type": "string",
              "required": null
            },
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "\n"
            }
          ],
          "platform": null,
          "name": "deactivateSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Deactibate (close) search component"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onSearchActivate",
          "type": [
            "Observable<{searchType: string; tag?: string}>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to 'activate' event"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onSearchDeactivate",
          "type": [
            "Observable<{searchType: string; tag?: string}>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to 'deactivate' event"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onSearchSubmit",
          "type": [
            "Observable<{term: string; tag?: string}>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to 'submit' event (when submit button clicked)"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "term",
              "type": "string",
              "required": null
            },
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "\n"
            }
          ],
          "platform": null,
          "name": "submitSearch",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Trigger search submit"
        }
      ],
      "name": "NbSearchService",
      "shortDescription": "Search component service, connects you code to a page-level search component.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "",
          "description": "",
          "code": "\n<nb-sidebar>\n  Sidebar content.\n</nb-sidebar>\n"
        },
        {
          "shortDescription": "Example of fixed sidebar located on the left side, initially collapsed.",
          "description": "",
          "code": "\n<nb-sidebar left fixed state=\"collapsed\">\n <nb-sidebar-header>Header</nb-sidebar-header>\n <nb-sidebar-content>\n   Menu or another component here\n </nb-sidebar-content>\n <nb-sidebar-footer>\n   Footer components here\n </nb-sidebar-footer>\n</nb-sidebar>\n"
        }
      ],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "tag",
          "shortDescription": "Tags a sidebar with some ID, can be later used in the sidebar service\nto determine which sidebar triggered the action, if multiple sidebars exist on the page."
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "fixed",
          "shortDescription": "Makes sidebar fixed (shown above the layout content)"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "left",
          "shortDescription": "Places sidebar on the right side"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "responsive",
          "shortDescription": "Makes sidebar listen to media query events and change its behaviour"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "right",
          "shortDescription": "Places sidebar on the left side"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "state",
          "shortDescription": "Initial sidebar state, `expanded`|`collapsed`|`compacted`"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "sidebarService",
              "type": "NbSidebarService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "themeService",
              "type": "NbThemeService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "element",
              "type": "ElementRef",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbSidebarComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "collapse",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Collapses the sidebar"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "compact",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Compacts the sidebar (minimizes)"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "expand",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Expands the sidebar"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnDestroy",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngOnInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "event",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "onClick",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onMediaQueryChanges",
          "type": [
            "Subscription"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "responsiveEnabled",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "compact",
              "type": "boolean",
              "required": null,
              "description": "If true, then sidebar state will be changed between expanded & compacted,\notherwise - between expanded & collapsed. False by default.\n"
            }
          ],
          "platform": null,
          "name": "toggle",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Toggles sidebar state (expanded|collapsed|compacted)"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "enabled",
              "type": "boolean",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "toggleResponsive",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbSidebarComponent",
      "description": "Sidebar can be place on the left or the right side of the layout, can be fixed (shown above the content)\nor can push the layout when opened.\n\nThere are three states - `expanded`, `collapsed`, `compacted`.\nBy default sidebar content is fixed and saves its position while the page is being scrolled.\n\nSidebar also supports a `responsive` behavior, listening to window size change and changing its size respectably.\n",
      "shortDescription": "Layout sidebar component.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "sidebar-font-size",
              "description": "Sidebar content font size"
            },
            {
              "name": "sidebar-line-height",
              "description": "Sidebar content line height"
            },
            {
              "name": "sidebar-fg",
              "description": "Foreground color"
            },
            {
              "name": "sidebar-bg",
              "description": "Background color"
            },
            {
              "name": "sidebar-height",
              "description": "Content height"
            },
            {
              "name": "sidebar-width",
              "description": "Expanded width"
            },
            {
              "name": "sidebar-width-compact",
              "description": "Compacted width"
            },
            {
              "name": "sidebar-padding",
              "description": "Sidebar content padding"
            },
            {
              "name": "sidebar-header-height",
              "description": "Sidebar header height"
            },
            {
              "name": "sidebar-footer-height",
              "description": "Sidebar footer height"
            },
            {
              "name": "sidebar-shadow",
              "description": "Sidebar container shadow"
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbSidebarFooterComponent",
      "description": "Placeholder which contains a sidebar footer content,\nplaced at the very bottom of the sidebar outside of the scroll area.\n",
      "shortDescription": "Sidebar footer container.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbSidebarHeaderComponent",
      "description": "Placeholder which contains a sidebar header content,\nplaced at the very top of the sidebar outside of the scroll area.\n",
      "shortDescription": "Sidebar header container.",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "If you have multiple sidebars on the page, mark them with `tag` input property and pass it here\nto specify which sidebar you want to control\n"
            }
          ],
          "platform": null,
          "name": "collapse",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Collapses a sidebar"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "tag If you have multiple sidebars on the page, mark them with `tag` input property and pass it here\nto specify which sidebar you want to control\n"
            }
          ],
          "platform": null,
          "name": "expand",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Expands a sidebar"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onCollapse",
          "type": [
            "Observable<{ tag: string }>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to collapse evens"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onExpand",
          "type": [
            "Observable<{ tag: string }>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to expand events"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onToggle",
          "type": [
            "Observable<{ compact: boolean, tag: string }>"
          ],
          "isStatic": false,
          "shortDescription": "Subscribe to toggle events"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "compact",
              "type": "boolean",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "tag",
              "type": "string",
              "required": null,
              "description": "tag If you have multiple sidebars on the page, mark them with `tag` input property and pass it here\nto specify which sidebar you want to control\n"
            }
          ],
          "platform": null,
          "name": "toggle",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Toggle a sidebar"
        }
      ],
      "name": "NbSidebarService",
      "description": "Root module service to control the sidebar from any part of the app.\n",
      "shortDescription": "Sidebar service.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbTabComponent",
      "shortDescription": "Specific tab container.",
      "styles": []
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [
        {
          "shortDescription": "Basic tabset example",
          "description": "",
          "code": "\n<nb-tabset>\n <nb-tab tabTitle=\"Simple Tab #1\">\n   Tab content 1\n </nb-tab>\n <nb-tab tabTitle=\"Simple Tab #2\">\n   Tab content 2\n </nb-tab>\n</nb-tabset>\n"
        }
      ],
      "props": [
        {
          "kind": "output",
          "platform": null,
          "isStatic": false,
          "type": "EventEmitter",
          "required": null,
          "name": "changeTab",
          "shortDescription": "Emits when tab is selected"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "routeParam",
          "shortDescription": "If specified - tabset listens to this parameter and selects corresponding tab."
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "",
          "required": null,
          "name": "fullWidth",
          "shortDescription": "Take full width of a parent"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "route",
              "type": "ActivatedRoute",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbTabsetComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "ngAfterContentInit",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "selectedTab",
              "type": "NbTabComponent",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "selectTab",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbTabsetComponent",
      "shortDescription": "Dynamic tabset component.\nRenders `<nb-tab></ng-tab> containers inside.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "tabs-font-family",
              "description": ""
            },
            {
              "name": "tabs-font-size",
              "description": ""
            },
            {
              "name": "tabs-content-font-family",
              "description": ""
            },
            {
              "name": "tabs-content-font-size",
              "description": ""
            },
            {
              "name": "tabs-active-bg",
              "description": ""
            },
            {
              "name": "tabs-active-font-weight",
              "description": ""
            },
            {
              "name": "tabs-padding",
              "description": ""
            },
            {
              "name": "tabs-content-padding",
              "description": ""
            },
            {
              "name": "tabs-header-bg",
              "description": ""
            },
            {
              "name": "tabs-separator",
              "description": ""
            },
            {
              "name": "tabs-fg",
              "description": ""
            },
            {
              "name": "tabs-fg-text",
              "description": ""
            },
            {
              "name": "tabs-fg-heading",
              "description": ""
            },
            {
              "name": "tabs-bg",
              "description": ""
            },
            {
              "name": "tabs-selected",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "component",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "color",
          "shortDescription": "Color of the area shown when no picture specified"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "required": null,
          "name": "menu",
          "shortDescription": "List of menu items for a user context menu (shown when clicked)"
        },
        {
          "kind": "output",
          "platform": null,
          "isStatic": false,
          "type": "EventEmitter",
          "required": null,
          "name": "menuClick",
          "shortDescription": "Outputs when a context menu item is clicked"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "name",
          "shortDescription": "Specifies a name to be shown on the right of a user picture"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "picture",
          "shortDescription": "Absolute path to a user picture\nUser name initials (JD for John Doe) will be shown if no picture specified"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "title",
          "shortDescription": "Specifies a title (written in a smaller font) to be shown under the **name**"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "inverse",
          "shortDescription": "Makes colors inverse based on current theme"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "onlyPicture",
          "shortDescription": "Whether to show only a picture or also show the name and title"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "showInitials",
          "shortDescription": "Whether to show a user initials (if no picture specified) or not"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "showName",
          "shortDescription": "Whether to show a user name or not"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "boolean",
          "required": null,
          "name": "showTitle",
          "shortDescription": "Whether to show a user title or not"
        },
        {
          "kind": "input",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "size",
          "shortDescription": "Size of the component, small|medium|large"
        }
      ],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "el",
              "type": "ElementRef",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbUserComponent"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getInitials",
          "type": [
            "string"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "hasMenu",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "event",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "hideMenu",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "event",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "item",
              "type": "NbUserMenuItem",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "itemClick",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "toggleMenu",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Toggles a context menu"
        }
      ],
      "name": "NbUserComponent",
      "description": "Can be used as a user profile link or can bring a user context menu.\n",
      "shortDescription": "Represents a component showing a user avatar (picture) with a user name on the right.",
      "styles": [
        {
          "shortDescription": "",
          "styles": [
            {
              "name": "user-font-size",
              "description": ""
            },
            {
              "name": "user-line-height",
              "description": ""
            },
            {
              "name": "user-bg",
              "description": ""
            },
            {
              "name": "user-fg",
              "description": ""
            },
            {
              "name": "user-fg-highlight",
              "description": ""
            },
            {
              "name": "user-font-family-secondary",
              "description": ""
            },
            {
              "name": "user-size-small",
              "description": ""
            },
            {
              "name": "user-size-medium",
              "description": ""
            },
            {
              "name": "user-size-large",
              "description": ""
            },
            {
              "name": "user-size-xlarge",
              "description": ""
            },
            {
              "name": "user-menu-fg",
              "description": ""
            },
            {
              "name": "user-menu-bg",
              "description": ""
            },
            {
              "name": "user-menu-active-fg",
              "description": ""
            },
            {
              "name": "user-menu-active-bg",
              "description": ""
            },
            {
              "name": "user-menu-border",
              "description": ""
            }
          ]
        }
      ]
    },
    {
      "kind": "class",
      "platform": null,
      "examples": [],
      "props": [
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "icon",
          "shortDescription": "Icon class"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "link",
          "shortDescription": "Menu link for [routerLink] directive"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "target",
          "shortDescription": "Link target (_blank, _self, etc)"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "title",
          "shortDescription": "Menu title"
        },
        {
          "kind": "property",
          "platform": null,
          "isStatic": false,
          "type": "string",
          "required": null,
          "name": "url",
          "shortDescription": "URL for absolute urls, used directly in href"
        }
      ],
      "methods": [],
      "name": "NbUserMenuItem",
      "shortDescription": "Action dropdown menu",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "breakpoints",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbMediaBreakpointsService"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getBreakpoints",
          "type": [
            "NbMediaBreakpoint[]"
          ],
          "isStatic": false,
          "shortDescription": "Returns a list of configured breakpoints for the theme"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getBreakpointsMap",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns a map of configured breakpoints for the theme"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "name",
              "type": "string",
              "required": null,
              "description": "string"
            }
          ],
          "platform": null,
          "name": "getByName",
          "type": [
            "NbMediaBreakpoint"
          ],
          "isStatic": false,
          "shortDescription": "Returns a configured breakpoint by name"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "width",
              "type": "number",
              "required": null,
              "description": "number"
            }
          ],
          "platform": null,
          "name": "getByWidth",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns a configured breakpoint by width"
        }
      ],
      "name": "NbMediaBreakpointsService",
      "description": "Provides access to available media breakpoints to convert window width to a configured breakpoint,\ne.g. 200px - *xs* breakpoint\n",
      "shortDescription": "Manages media breakpoints",
      "styles": []
    },
    {
      "kind": "interface",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [],
      "name": "NbMediaBreakpoint",
      "description": "Where `name` - breakpoint name alias (e.g. xs, sm, md, etc), and width - min breakpoint width\n",
      "shortDescription": "Media breakpoint type",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "builtInThemes",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "newThemes",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbJSThemesRegistry"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "newThemes",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "oldThemes",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "combineByNames",
          "type": [
            null
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "themeName",
              "type": "string",
              "required": null
            }
          ],
          "platform": null,
          "name": "get",
          "type": [
            "NbJSThemeOptions"
          ],
          "isStatic": false,
          "shortDescription": "Return a theme"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "themeName",
              "type": "string",
              "required": null
            }
          ],
          "platform": null,
          "name": "has",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "Checks whether the theme is registered"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "item",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "isObject",
          "type": [
            "boolean"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "target",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "sources",
              "type": "Object",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "mergeDeep",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "config",
              "type": "any",
              "required": null,
              "description": "any"
            },
            {
              "name": "themeName",
              "type": "string",
              "required": null,
              "description": "string"
            },
            {
              "name": "baseTheme",
              "type": "string",
              "required": null,
              "description": "string\n"
            }
          ],
          "platform": null,
          "name": "register",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Registers a new JS theme"
        }
      ],
      "name": "NbJSThemesRegistry",
      "shortDescription": "Js Themes registry - provides access to the JS themes' variables.\nUsually shouldn't be used directly, but through the NbThemeService class methods (getJsTheme).",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "clear",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Clears the list of loader"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "done",
              "type": "(Anonymous function)",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "executeAll",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getSpinnerElement",
          "type": [
            "any"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "hideSpinner",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "load",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Start the loader process, show spinnder and execute loaders"
        },
        {
          "examples": [],
          "params": [
            {
              "name": "method",
              "type": "Promise",
              "required": null,
              "description": "Promise<any>\n"
            }
          ],
          "platform": null,
          "name": "registerLoader",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "Appends new loader to the list of loader to be completed before\nspinner will be hidden"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "showSpinner",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbSpinnerService",
      "shortDescription": "Service to control the global page spinner.",
      "styles": []
    },
    {
      "kind": "service",
      "platform": null,
      "examples": [],
      "props": [],
      "methods": [
        {
          "examples": [],
          "params": [
            {
              "name": "options",
              "type": "any",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "breakpointService",
              "type": "NbMediaBreakpointsService",
              "required": null,
              "shortDescription": "",
              "description": ""
            },
            {
              "name": "jsThemesRegistry",
              "type": "NbJSThemesRegistry",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "constructor",
          "type": [
            "NbThemeService"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "className",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "appendLayoutClass",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "component",
              "type": "Type",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "appendToLayoutTop",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "name",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "changeTheme",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "width",
              "type": "number",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "changeWindowWidth",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "clearLayoutTop",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "getJsTheme",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Returns a theme object with variables (color/paddings/etc) on a theme change.\nOnce subscribed - returns current theme."
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onAppendLayoutClass",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onAppendToTop",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onClearLayoutTop",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onMediaQueryChange",
          "type": [
            ""
          ],
          "isStatic": false,
          "shortDescription": "Triggers media query breakpoint change\nReturns a pair where the first item is previous media breakpoint and the second item is current breakpoit.\n```\n [{ name: 'xs', width: 0 }, { name: 'md', width: 768 }] // change from `xs` to `md`\n```"
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onRemoveLayoutClass",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [],
          "platform": null,
          "name": "onThemeChange",
          "type": [
            "Observable"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        },
        {
          "examples": [],
          "params": [
            {
              "name": "className",
              "type": "string",
              "required": null,
              "shortDescription": "",
              "description": ""
            }
          ],
          "platform": null,
          "name": "removeLayoutClass",
          "type": [
            "void"
          ],
          "isStatic": false,
          "shortDescription": "",
          "description": ""
        }
      ],
      "name": "NbThemeService",
      "shortDescription": "Main Nebular service. Includes various helper methods.",
      "styles": []
    }
  ],
  "themes": {
    "default": {
      "data": {
        "font-main": {
          "name": "font-main",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "layout-font-family"
            },
            {
              "theme": "default",
              "prop": "tabs-content-font-family"
            },
            {
              "theme": "default",
              "prop": "smart-table-font-family"
            },
            {
              "theme": "default",
              "prop": "modal-body-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            }
          ]
        },
        "font-secondary": {
          "name": "font-secondary",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-font-family"
            },
            {
              "theme": "default",
              "prop": "header-font-family"
            },
            {
              "theme": "default",
              "prop": "menu-font-family"
            },
            {
              "theme": "default",
              "prop": "tabs-font-family"
            },
            {
              "theme": "default",
              "prop": "route-tabs-font-family"
            },
            {
              "theme": "default",
              "prop": "user-font-family-secondary"
            },
            {
              "theme": "default",
              "prop": "actions-font-family"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-font-family"
            },
            {
              "theme": "default",
              "prop": "btn-font-family"
            },
            {
              "theme": "default",
              "prop": "form-control-font-family"
            },
            {
              "theme": "default",
              "prop": "modal-header-font-family"
            }
          ]
        },
        "font-weight-thin": {
          "name": "font-weight-thin",
          "value": 200,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-weight-thin"
            }
          ]
        },
        "font-weight-light": {
          "name": "font-weight-light",
          "value": 300,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-weight-light"
            }
          ]
        },
        "font-weight-normal": {
          "name": "font-weight-normal",
          "value": 400,
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-font-weight"
            },
            {
              "theme": "default",
              "prop": "smart-table-font-weight"
            },
            {
              "theme": "default",
              "prop": "form-control-feedback-font-weight"
            },
            {
              "theme": "default",
              "prop": "modal-font-weight"
            },
            {
              "theme": "default",
              "prop": "modal-body-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            }
          ]
        },
        "font-weight-bolder": {
          "name": "font-weight-bolder",
          "value": 500,
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "menu-font-weight"
            },
            {
              "theme": "default",
              "prop": "menu-group-font-weight"
            },
            {
              "theme": "default",
              "prop": "modal-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            }
          ]
        },
        "font-weight-bold": {
          "name": "font-weight-bold",
          "value": 600,
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "default",
              "prop": "menu-active-font-weight"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "font-weight-bold"
            }
          ]
        },
        "font-weight-ultra-bold": {
          "name": "font-weight-ultra-bold",
          "value": 800,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-weight-ultra-bold"
            }
          ]
        },
        "base-font-size": {
          "name": "base-font-size",
          "value": "16px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "base-font-size"
            }
          ]
        },
        "font-size-xlg": {
          "name": "font-size-xlg",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-size-xlg"
            }
          ]
        },
        "font-size-lg": {
          "name": "font-size-lg",
          "value": "1.125rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-font-size"
            },
            {
              "theme": "default",
              "prop": "tabs-font-size"
            },
            {
              "theme": "default",
              "prop": "route-tabs-font-size"
            },
            {
              "theme": "default",
              "prop": "btn-font-size-lg"
            },
            {
              "theme": "default",
              "prop": "form-control-lg-font-size"
            },
            {
              "theme": "default",
              "prop": "modal-header-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            }
          ]
        },
        "font-size": {
          "name": "font-size",
          "value": "1rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-font-size"
            },
            {
              "theme": "default",
              "prop": "header-font-size"
            },
            {
              "theme": "default",
              "prop": "layout-font-size"
            },
            {
              "theme": "default",
              "prop": "sidebar-font-size"
            },
            {
              "theme": "default",
              "prop": "menu-font-size"
            },
            {
              "theme": "default",
              "prop": "tabs-content-font-size"
            },
            {
              "theme": "default",
              "prop": "user-font-size"
            },
            {
              "theme": "default",
              "prop": "actions-font-size"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-font-size"
            },
            {
              "theme": "default",
              "prop": "smart-table-font-size"
            },
            {
              "theme": "default",
              "prop": "modal-font-size"
            },
            {
              "theme": "default",
              "prop": "modal-body-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "font-size"
            }
          ]
        },
        "font-size-sm": {
          "name": "font-size-sm",
          "value": "0.875rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "form-control-sm-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "font-size-sm"
            }
          ]
        },
        "font-size-xs": {
          "name": "font-size-xs",
          "value": "0.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-size-xs"
            }
          ]
        },
        "radius": {
          "name": "radius",
          "value": "0.375rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-border-radius"
            },
            {
              "theme": "default",
              "prop": "menu-submenu-item-border-radius"
            },
            {
              "theme": "default",
              "prop": "smart-table-border-radius"
            },
            {
              "theme": "default",
              "prop": "btn-border-radius"
            },
            {
              "theme": "default",
              "prop": "form-control-border-radius"
            },
            {
              "theme": "default",
              "prop": "modal-border-radius"
            }
          ]
        },
        "padding": {
          "name": "padding",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-padding"
            },
            {
              "theme": "default",
              "prop": "sidebar-padding"
            },
            {
              "theme": "default",
              "prop": "tabs-padding"
            },
            {
              "theme": "default",
              "prop": "route-tabs-padding"
            },
            {
              "theme": "default",
              "prop": "actions-padding"
            },
            {
              "theme": "default",
              "prop": "modal-padding"
            },
            {
              "theme": "cosmic",
              "prop": "padding"
            }
          ]
        },
        "margin": {
          "name": "margin",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-margin"
            },
            {
              "theme": "cosmic",
              "prop": "margin"
            }
          ]
        },
        "line-height": {
          "name": "line-height",
          "value": 1.25,
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-line-height"
            },
            {
              "theme": "default",
              "prop": "header-line-height"
            },
            {
              "theme": "default",
              "prop": "layout-line-height"
            },
            {
              "theme": "default",
              "prop": "sidebar-line-height"
            },
            {
              "theme": "default",
              "prop": "user-line-height"
            },
            {
              "theme": "default",
              "prop": "actions-line-height"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-line-height"
            },
            {
              "theme": "default",
              "prop": "smart-table-line-height"
            },
            {
              "theme": "default",
              "prop": "btn-line-height"
            },
            {
              "theme": "default",
              "prop": "modal-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "line-height"
            }
          ]
        },
        "color-bg": {
          "name": "color-bg",
          "value": "#ffffff",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-bg"
            },
            {
              "theme": "default",
              "prop": "card-header-active-fg"
            },
            {
              "theme": "default",
              "prop": "header-bg"
            },
            {
              "theme": "default",
              "prop": "footer-bg"
            },
            {
              "theme": "default",
              "prop": "sidebar-bg"
            },
            {
              "theme": "default",
              "prop": "menu-bg"
            },
            {
              "theme": "default",
              "prop": "menu-active-bg"
            },
            {
              "theme": "default",
              "prop": "menu-submenu-bg"
            },
            {
              "theme": "default",
              "prop": "menu-submenu-active-bg"
            },
            {
              "theme": "default",
              "prop": "user-bg"
            },
            {
              "theme": "default",
              "prop": "user-menu-bg"
            },
            {
              "theme": "default",
              "prop": "actions-bg"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-bg"
            },
            {
              "theme": "default",
              "prop": "smart-table-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-focus-bg"
            },
            {
              "theme": "default",
              "prop": "modal-bg"
            }
          ]
        },
        "color-bg-active": {
          "name": "color-bg-active",
          "value": "#e9edf2",
          "parents": [],
          "childs": []
        },
        "color-fg": {
          "name": "color-fg",
          "value": "#a4abb3",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-fg"
            },
            {
              "theme": "default",
              "prop": "card-header-fg"
            },
            {
              "theme": "default",
              "prop": "card-header-active-bg"
            },
            {
              "theme": "default",
              "prop": "layout-fg"
            },
            {
              "theme": "default",
              "prop": "menu-group-fg"
            },
            {
              "theme": "default",
              "prop": "menu-icon-color"
            },
            {
              "theme": "default",
              "prop": "tabs-fg"
            },
            {
              "theme": "default",
              "prop": "route-tabs-fg"
            },
            {
              "theme": "default",
              "prop": "user-fg"
            },
            {
              "theme": "default",
              "prop": "actions-fg"
            },
            {
              "theme": "default",
              "prop": "search-btn-open-fg"
            },
            {
              "theme": "default",
              "prop": "search-btn-close-fg"
            },
            {
              "theme": "default",
              "prop": "search-bg-secondary"
            },
            {
              "theme": "default",
              "prop": "search-info"
            },
            {
              "theme": "default",
              "prop": "search-dash"
            },
            {
              "theme": "default",
              "prop": "search-placeholder"
            },
            {
              "theme": "default",
              "prop": "smart-table-fg-secondary"
            },
            {
              "theme": "default",
              "prop": "form-control-text-secondary-color"
            },
            {
              "theme": "default",
              "prop": "form-control-placeholder-color"
            }
          ]
        },
        "color-fg-heading": {
          "name": "color-fg-heading",
          "value": "#2a2a2a",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-fg-heading"
            },
            {
              "theme": "default",
              "prop": "card-header-fg-heading"
            },
            {
              "theme": "default",
              "prop": "header-fg"
            },
            {
              "theme": "default",
              "prop": "footer-fg"
            },
            {
              "theme": "default",
              "prop": "sidebar-fg"
            },
            {
              "theme": "default",
              "prop": "menu-active-fg"
            },
            {
              "theme": "default",
              "prop": "menu-submenu-active-fg"
            },
            {
              "theme": "default",
              "prop": "menu-icon-active-color"
            },
            {
              "theme": "default",
              "prop": "tabs-fg-heading"
            },
            {
              "theme": "default",
              "prop": "route-tabs-fg-heading"
            },
            {
              "theme": "default",
              "prop": "user-menu-fg"
            },
            {
              "theme": "default",
              "prop": "search-text"
            },
            {
              "theme": "default",
              "prop": "smart-table-header-fg"
            },
            {
              "theme": "default",
              "prop": "smart-table-fg"
            },
            {
              "theme": "default",
              "prop": "btn-outline-fg"
            },
            {
              "theme": "default",
              "prop": "btn-group-fg"
            },
            {
              "theme": "default",
              "prop": "form-control-text-primary-color"
            },
            {
              "theme": "default",
              "prop": "checkbox-fg"
            },
            {
              "theme": "default",
              "prop": "modal-fg-heading"
            }
          ]
        },
        "color-fg-text": {
          "name": "color-fg-text",
          "value": "#4b4b4b",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-fg-text"
            },
            {
              "theme": "default",
              "prop": "menu-fg"
            },
            {
              "theme": "default",
              "prop": "menu-submenu-fg"
            },
            {
              "theme": "default",
              "prop": "tabs-fg-text"
            },
            {
              "theme": "default",
              "prop": "modal-fg"
            }
          ]
        },
        "color-fg-highlight": {
          "name": "color-fg-highlight",
          "value": "#40dc7e",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "menu-submenu-active-border-color"
            }
          ]
        },
        "separator": {
          "name": "separator",
          "value": "#ebeef2",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-separator"
            },
            {
              "theme": "default",
              "prop": "footer-separator"
            },
            {
              "theme": "default",
              "prop": "menu-item-separator"
            },
            {
              "theme": "default",
              "prop": "tabs-separator"
            },
            {
              "theme": "default",
              "prop": "route-tabs-separator"
            },
            {
              "theme": "default",
              "prop": "actions-separator"
            },
            {
              "theme": "default",
              "prop": "smart-table-separator"
            },
            {
              "theme": "default",
              "prop": "smart-table-paging-border-color"
            },
            {
              "theme": "default",
              "prop": "modal-separator"
            }
          ]
        },
        "color-gray": {
          "name": "color-gray",
          "value": "rgba(81, 113, 165, 0.15)",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "border-color"
            },
            {
              "theme": "cosmic",
              "prop": "color-gray"
            }
          ]
        },
        "color-neutral": {
          "name": "color-neutral",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "color-neutral"
            }
          ]
        },
        "color-white": {
          "name": "color-white",
          "value": "#ffffff",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "toaster-fg"
            },
            {
              "theme": "default",
              "prop": "btn-fg"
            },
            {
              "theme": "cosmic",
              "prop": "color-white"
            }
          ]
        },
        "color-disabled": {
          "name": "color-disabled",
          "value": "rgba(255, 255, 255, 0.4)",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-disabled-bg"
            },
            {
              "theme": "cosmic",
              "prop": "color-disabled"
            }
          ]
        },
        "color-primary": {
          "name": "color-primary",
          "value": "#8a7fff",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-primary-bg"
            },
            {
              "theme": "default",
              "prop": "toaster-bg"
            },
            {
              "theme": "default",
              "prop": "toaster-wait"
            },
            {
              "theme": "default",
              "prop": "btn-primary-bg"
            }
          ]
        },
        "color-success": {
          "name": "color-success",
          "value": "#40dc7e",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-success-bg"
            },
            {
              "theme": "default",
              "prop": "tabs-selected"
            },
            {
              "theme": "default",
              "prop": "route-tabs-selected"
            },
            {
              "theme": "default",
              "prop": "user-menu-active-bg"
            },
            {
              "theme": "default",
              "prop": "user-menu-border"
            },
            {
              "theme": "default",
              "prop": "smart-table-paging-bg-active"
            },
            {
              "theme": "default",
              "prop": "toaster-success"
            },
            {
              "theme": "default",
              "prop": "btn-success-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-selected-border-color"
            },
            {
              "theme": "default",
              "prop": "form-control-success-border-color"
            },
            {
              "theme": "default",
              "prop": "checkbox-selected-border-color"
            },
            {
              "theme": "default",
              "prop": "radio-fg"
            }
          ]
        },
        "color-info": {
          "name": "color-info",
          "value": "#4ca6ff",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-info-bg"
            },
            {
              "theme": "default",
              "prop": "toaster-info"
            },
            {
              "theme": "default",
              "prop": "btn-info-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-info-border-color"
            }
          ]
        },
        "color-warning": {
          "name": "color-warning",
          "value": "#ffa100",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-warning-bg"
            },
            {
              "theme": "default",
              "prop": "toaster-warning"
            },
            {
              "theme": "default",
              "prop": "btn-warning-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-warning-border-color"
            },
            {
              "theme": "cosmic",
              "prop": "color-warning"
            }
          ]
        },
        "color-danger": {
          "name": "color-danger",
          "value": "#ff4c6a",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-header-danger-bg"
            },
            {
              "theme": "default",
              "prop": "toaster-error"
            },
            {
              "theme": "default",
              "prop": "btn-danger-bg"
            },
            {
              "theme": "default",
              "prop": "form-control-danger-border-color"
            }
          ]
        },
        "social-color-facebook": {
          "name": "social-color-facebook",
          "value": "#3b5998",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-facebook"
            }
          ]
        },
        "social-color-twitter": {
          "name": "social-color-twitter",
          "value": "#55acee",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-twitter"
            }
          ]
        },
        "social-color-google": {
          "name": "social-color-google",
          "value": "#dd4b39",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-google"
            }
          ]
        },
        "social-color-linkedin": {
          "name": "social-color-linkedin",
          "value": "#0177b5",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-linkedin"
            }
          ]
        },
        "social-color-github": {
          "name": "social-color-github",
          "value": "#6b6b6b",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-github"
            }
          ]
        },
        "social-color-stackoverflow": {
          "name": "social-color-stackoverflow",
          "value": "#2f96e8",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-stackoverflow"
            }
          ]
        },
        "social-color-dribble": {
          "name": "social-color-dribble",
          "value": "#f26798",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-dribble"
            }
          ]
        },
        "social-color-behance": {
          "name": "social-color-behance",
          "value": "#0093fa",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "social-color-behance"
            }
          ]
        },
        "border-color": {
          "name": "border-color",
          "value": "rgba(81, 113, 165, 0.15)",
          "parents": [
            {
              "theme": "default",
              "prop": "color-gray"
            }
          ],
          "childs": []
        },
        "shadow": {
          "name": "shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "card-shadow"
            },
            {
              "theme": "default",
              "prop": "header-shadow"
            },
            {
              "theme": "default",
              "prop": "footer-shadow"
            },
            {
              "theme": "default",
              "prop": "layout-window-shadow"
            },
            {
              "theme": "default",
              "prop": "sidebar-shadow"
            },
            {
              "theme": "default",
              "prop": "toaster-shadow"
            }
          ]
        },
        "link-color": {
          "name": "link-color",
          "value": "#3dcc6d",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "link-color-visited"
            }
          ]
        },
        "link-color-hover": {
          "name": "link-color-hover",
          "value": "#2ee56b",
          "parents": [],
          "childs": []
        },
        "link-color-visited": {
          "name": "link-color-visited",
          "value": "#3dcc6d",
          "parents": [
            {
              "theme": "default",
              "prop": "link-color"
            }
          ],
          "childs": []
        },
        "scrollbar-fg": {
          "name": "scrollbar-fg",
          "value": "#dadada",
          "parents": [],
          "childs": []
        },
        "scrollbar-bg": {
          "name": "scrollbar-bg",
          "value": "#f2f2f2",
          "parents": [],
          "childs": []
        },
        "scrollbar-width": {
          "name": "scrollbar-width",
          "value": "5px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "scrollbar-width"
            }
          ]
        },
        "scrollbar-thumb-radius": {
          "name": "scrollbar-thumb-radius",
          "value": "2.5px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "scrollbar-thumb-radius"
            }
          ]
        },
        "radial-gradient": {
          "name": "radial-gradient",
          "value": "none",
          "parents": [],
          "childs": []
        },
        "linear-gradient": {
          "name": "linear-gradient",
          "value": "none",
          "parents": [],
          "childs": []
        },
        "card-font-size": {
          "name": "card-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "card-line-height": {
          "name": "card-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "card-font-weight": {
          "name": "card-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "card-fg": {
          "name": "card-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-fg-text": {
          "name": "card-fg-text",
          "value": "#4b4b4b",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "card-fg-heading": {
          "name": "card-fg-heading",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "card-bg": {
          "name": "card-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "card-height-xxsmall": {
          "name": "card-height-xxsmall",
          "value": "96px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-xxsmall"
            }
          ]
        },
        "card-height-xsmall": {
          "name": "card-height-xsmall",
          "value": "216px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-xsmall"
            }
          ]
        },
        "card-height-small": {
          "name": "card-height-small",
          "value": "336px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-small"
            }
          ]
        },
        "card-height-medium": {
          "name": "card-height-medium",
          "value": "456px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-medium"
            }
          ]
        },
        "card-height-large": {
          "name": "card-height-large",
          "value": "576px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-large"
            }
          ]
        },
        "card-height-xlarge": {
          "name": "card-height-xlarge",
          "value": "696px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-xlarge"
            }
          ]
        },
        "card-height-xxlarge": {
          "name": "card-height-xxlarge",
          "value": "816px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-height-xxlarge"
            }
          ]
        },
        "card-shadow": {
          "name": "card-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "card-border-radius": {
          "name": "card-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "card-padding": {
          "name": "card-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "card-margin": {
          "name": "card-margin",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "margin"
            }
          ],
          "childs": []
        },
        "card-header-font-family": {
          "name": "card-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "card-header-font-size": {
          "name": "card-header-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "card-header-font-weight": {
          "name": "card-header-font-weight",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": [
            {
              "theme": "default",
              "prop": "tabs-active-font-weight"
            },
            {
              "theme": "default",
              "prop": "route-tabs-active-font-weight"
            }
          ]
        },
        "card-separator": {
          "name": "card-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "card-header-fg": {
          "name": "card-header-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-header-fg-heading": {
          "name": "card-header-fg-heading",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "card-header-active-bg": {
          "name": "card-header-active-bg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-header-active-fg": {
          "name": "card-header-active-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "card-header-disabled-bg": {
          "name": "card-header-disabled-bg",
          "value": "rgba(255, 255, 255, 0.4)",
          "parents": [
            {
              "theme": "default",
              "prop": "color-disabled"
            }
          ],
          "childs": []
        },
        "card-header-primary-bg": {
          "name": "card-header-primary-bg",
          "value": "#8a7fff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "card-header-info-bg": {
          "name": "card-header-info-bg",
          "value": "#4ca6ff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "card-header-success-bg": {
          "name": "card-header-success-bg",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "card-header-warning-bg": {
          "name": "card-header-warning-bg",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "card-header-danger-bg": {
          "name": "card-header-danger-bg",
          "value": "#ff4c6a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "header-font-family": {
          "name": "header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "header-font-size": {
          "name": "header-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "header-line-height": {
          "name": "header-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "header-fg": {
          "name": "header-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "header-bg": {
          "name": "header-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "header-height": {
          "name": "header-height",
          "value": "4.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "header-height"
            }
          ]
        },
        "header-padding": {
          "name": "header-padding",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "header-padding"
            }
          ]
        },
        "header-shadow": {
          "name": "header-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "footer-height": {
          "name": "footer-height",
          "value": "4.725rem",
          "parents": [],
          "childs": []
        },
        "footer-padding": {
          "name": "footer-padding",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "footer-padding"
            }
          ]
        },
        "footer-fg": {
          "name": "footer-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "footer-bg": {
          "name": "footer-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "footer-separator": {
          "name": "footer-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "footer-shadow": {
          "name": "footer-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "layout-font-family": {
          "name": "layout-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "layout-font-size": {
          "name": "layout-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "layout-line-height": {
          "name": "layout-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "layout-fg": {
          "name": "layout-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "layout-bg": {
          "name": "layout-bg",
          "value": "#ebeff5",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "layout-window-mode-bg"
            },
            {
              "theme": "default",
              "prop": "search-bg"
            },
            {
              "theme": "default",
              "prop": "btn-group-bg"
            }
          ]
        },
        "layout-min-height": {
          "name": "layout-min-height",
          "value": "100vh",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-min-height"
            }
          ]
        },
        "layout-content-width": {
          "name": "layout-content-width",
          "value": "900px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-content-width"
            }
          ]
        },
        "layout-window-mode-min-width": {
          "name": "layout-window-mode-min-width",
          "value": "300px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-window-mode-min-width"
            }
          ]
        },
        "layout-window-mode-max-width": {
          "name": "layout-window-mode-max-width",
          "value": "1920px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-window-mode-max-width"
            }
          ]
        },
        "layout-window-mode-bg": {
          "name": "layout-window-mode-bg",
          "value": "#ebeff5",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-bg"
            }
          ],
          "childs": []
        },
        "layout-window-mode-padding-top": {
          "name": "layout-window-mode-padding-top",
          "value": "4.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-window-mode-padding-top"
            }
          ]
        },
        "layout-window-shadow": {
          "name": "layout-window-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "layout-padding": {
          "name": "layout-padding",
          "value": [
            "2.25rem",
            "2.25rem",
            "0.75rem"
          ],
          "parents": [],
          "childs": []
        },
        "layout-medium-padding": {
          "name": "layout-medium-padding",
          "value": [
            "1.5rem",
            "1.5rem",
            "0.5rem"
          ],
          "parents": [],
          "childs": []
        },
        "layout-small-padding": {
          "name": "layout-small-padding",
          "value": [
            "1rem",
            "1rem",
            0
          ],
          "parents": [],
          "childs": []
        },
        "sidebar-font-size": {
          "name": "sidebar-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "sidebar-line-height": {
          "name": "sidebar-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "sidebar-fg": {
          "name": "sidebar-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "sidebar-bg": {
          "name": "sidebar-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "sidebar-height": {
          "name": "sidebar-height",
          "value": "100vh",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "sidebar-height"
            }
          ]
        },
        "sidebar-width": {
          "name": "sidebar-width",
          "value": "16rem",
          "parents": [],
          "childs": []
        },
        "sidebar-width-compact": {
          "name": "sidebar-width-compact",
          "value": "3.5rem",
          "parents": [],
          "childs": []
        },
        "sidebar-padding": {
          "name": "sidebar-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "sidebar-header-height": {
          "name": "sidebar-header-height",
          "value": "3.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "sidebar-header-height"
            }
          ]
        },
        "sidebar-footer-height": {
          "name": "sidebar-footer-height",
          "value": "3.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "sidebar-footer-height"
            }
          ]
        },
        "sidebar-shadow": {
          "name": "sidebar-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "menu-font-family": {
          "name": "menu-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "menu-font-size": {
          "name": "menu-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "menu-font-weight": {
          "name": "menu-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "menu-fg": {
          "name": "menu-fg",
          "value": "#4b4b4b",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "menu-bg": {
          "name": "menu-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-active-fg": {
          "name": "menu-active-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "menu-active-bg": {
          "name": "menu-active-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-active-font-weight": {
          "name": "menu-active-font-weight",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": []
        },
        "menu-submenu-bg": {
          "name": "menu-submenu-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": [
            {
              "theme": "default",
              "prop": "menu-submenu-hover-bg"
            }
          ]
        },
        "menu-submenu-fg": {
          "name": "menu-submenu-fg",
          "value": "#4b4b4b",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "menu-submenu-active-fg": {
          "name": "menu-submenu-active-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": [
            {
              "theme": "default",
              "prop": "menu-submenu-hover-fg"
            }
          ]
        },
        "menu-submenu-active-bg": {
          "name": "menu-submenu-active-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-submenu-active-border-color": {
          "name": "menu-submenu-active-border-color",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-highlight"
            }
          ],
          "childs": []
        },
        "menu-submenu-active-shadow": {
          "name": "menu-submenu-active-shadow",
          "value": "none",
          "parents": [],
          "childs": []
        },
        "menu-submenu-hover-fg": {
          "name": "menu-submenu-hover-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-submenu-active-fg"
            },
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "menu-submenu-hover-bg": {
          "name": "menu-submenu-hover-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-submenu-bg"
            },
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-submenu-item-border-width": {
          "name": "menu-submenu-item-border-width",
          "value": "0.125rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-item-border-width"
            }
          ]
        },
        "menu-submenu-item-border-radius": {
          "name": "menu-submenu-item-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "menu-submenu-item-padding": {
          "name": "menu-submenu-item-padding",
          "value": [
            "0.5rem",
            "1rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-submenu-item-container-padding": {
          "name": "menu-submenu-item-container-padding",
          "value": [
            0,
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-submenu-padding": {
          "name": "menu-submenu-padding",
          "value": "0.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-padding"
            }
          ]
        },
        "menu-group-font-weight": {
          "name": "menu-group-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "menu-group-font-size": {
          "name": "menu-group-font-size",
          "value": "0.875rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-group-font-size"
            }
          ]
        },
        "menu-group-fg": {
          "name": "menu-group-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "menu-group-padding": {
          "name": "menu-group-padding",
          "value": [
            "1rem",
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-item-padding": {
          "name": "menu-item-padding",
          "value": [
            "0.675rem",
            "1rem",
            "0.675rem",
            "0.75rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-item-separator": {
          "name": "menu-item-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "menu-icon-font-size": {
          "name": "menu-icon-font-size",
          "value": "2.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-icon-font-size"
            }
          ]
        },
        "menu-icon-margin": {
          "name": "menu-icon-margin",
          "value": [
            0,
            "0.5rem",
            0,
            0
          ],
          "parents": [],
          "childs": []
        },
        "menu-icon-color": {
          "name": "menu-icon-color",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "menu-icon-active-color": {
          "name": "menu-icon-active-color",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "tabs-font-family": {
          "name": "tabs-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "tabs-font-size": {
          "name": "tabs-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "tabs-content-font-family": {
          "name": "tabs-content-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "tabs-content-font-size": {
          "name": "tabs-content-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "tabs-active-bg": {
          "name": "tabs-active-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "tabs-active-bg"
            }
          ]
        },
        "tabs-active-font-weight": {
          "name": "tabs-active-font-weight",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": []
        },
        "tabs-padding": {
          "name": "tabs-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "tabs-content-padding": {
          "name": "tabs-content-padding",
          "value": 0,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "tabs-content-padding"
            }
          ]
        },
        "tabs-header-bg": {
          "name": "tabs-header-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "tabs-header-bg"
            }
          ]
        },
        "tabs-separator": {
          "name": "tabs-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "tabs-fg": {
          "name": "tabs-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "tabs-fg-text": {
          "name": "tabs-fg-text",
          "value": "#4b4b4b",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "tabs-fg-heading": {
          "name": "tabs-fg-heading",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "tabs-bg": {
          "name": "tabs-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "tabs-bg"
            }
          ]
        },
        "tabs-selected": {
          "name": "tabs-selected",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "route-tabs-font-family": {
          "name": "route-tabs-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "route-tabs-font-size": {
          "name": "route-tabs-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "route-tabs-active-bg": {
          "name": "route-tabs-active-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "route-tabs-active-bg"
            }
          ]
        },
        "route-tabs-active-font-weight": {
          "name": "route-tabs-active-font-weight",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": []
        },
        "route-tabs-padding": {
          "name": "route-tabs-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "route-tabs-header-bg": {
          "name": "route-tabs-header-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "route-tabs-header-bg"
            }
          ]
        },
        "route-tabs-separator": {
          "name": "route-tabs-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "route-tabs-fg": {
          "name": "route-tabs-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "route-tabs-fg-heading": {
          "name": "route-tabs-fg-heading",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "route-tabs-bg": {
          "name": "route-tabs-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "route-tabs-bg"
            }
          ]
        },
        "route-tabs-selected": {
          "name": "route-tabs-selected",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "user-font-size": {
          "name": "user-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "user-line-height": {
          "name": "user-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "user-bg": {
          "name": "user-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "user-fg": {
          "name": "user-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "user-fg-highlight": {
          "name": "user-fg-highlight",
          "value": "#bcc3cc",
          "parents": [],
          "childs": []
        },
        "user-font-family-secondary": {
          "name": "user-font-family-secondary",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "user-size-small": {
          "name": "user-size-small",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "user-size-small"
            }
          ]
        },
        "user-size-medium": {
          "name": "user-size-medium",
          "value": "2.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "user-size-medium"
            }
          ]
        },
        "user-size-large": {
          "name": "user-size-large",
          "value": "3.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "user-size-large"
            }
          ]
        },
        "user-size-xlarge": {
          "name": "user-size-xlarge",
          "value": "4rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "user-size-xlarge"
            }
          ]
        },
        "user-menu-fg": {
          "name": "user-menu-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "user-menu-bg": {
          "name": "user-menu-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "user-menu-active-fg": {
          "name": "user-menu-active-fg",
          "value": "#ffffff",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "user-menu-active-fg"
            }
          ]
        },
        "user-menu-active-bg": {
          "name": "user-menu-active-bg",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "user-menu-border": {
          "name": "user-menu-border",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "actions-font-size": {
          "name": "actions-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "actions-font-family": {
          "name": "actions-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "actions-line-height": {
          "name": "actions-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "actions-fg": {
          "name": "actions-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "actions-bg": {
          "name": "actions-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "actions-separator": {
          "name": "actions-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "actions-padding": {
          "name": "actions-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "actions-size-small": {
          "name": "actions-size-small",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "actions-size-small"
            }
          ]
        },
        "actions-size-medium": {
          "name": "actions-size-medium",
          "value": "2.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "actions-size-medium"
            }
          ]
        },
        "actions-size-large": {
          "name": "actions-size-large",
          "value": "3.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "actions-size-large"
            }
          ]
        },
        "search-btn-open-fg": {
          "name": "search-btn-open-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-btn-close-fg": {
          "name": "search-btn-close-fg",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-bg": {
          "name": "search-bg",
          "value": "#ebeff5",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-bg"
            }
          ],
          "childs": []
        },
        "search-bg-secondary": {
          "name": "search-bg-secondary",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-text": {
          "name": "search-text",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "search-info": {
          "name": "search-info",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-dash": {
          "name": "search-dash",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-placeholder": {
          "name": "search-placeholder",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-family": {
          "name": "smart-table-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-size": {
          "name": "smart-table-header-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-weight": {
          "name": "smart-table-header-font-weight",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": []
        },
        "smart-table-header-line-height": {
          "name": "smart-table-header-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "smart-table-header-fg": {
          "name": "smart-table-header-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "smart-table-header-bg": {
          "name": "smart-table-header-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "smart-table-font-family": {
          "name": "smart-table-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "smart-table-font-size": {
          "name": "smart-table-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "smart-table-font-weight": {
          "name": "smart-table-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "smart-table-line-height": {
          "name": "smart-table-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "smart-table-fg": {
          "name": "smart-table-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "smart-table-bg": {
          "name": "smart-table-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "smart-table-bg-even": {
          "name": "smart-table-bg-even",
          "value": "#f5f7fc",
          "parents": [],
          "childs": []
        },
        "smart-table-fg-secondary": {
          "name": "smart-table-fg-secondary",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "smart-table-bg-active": {
          "name": "smart-table-bg-active",
          "value": "#e6f3ff",
          "parents": [],
          "childs": []
        },
        "smart-table-padding": {
          "name": "smart-table-padding",
          "value": [
            "0.875rem",
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "smart-table-filter-padding": {
          "name": "smart-table-filter-padding",
          "value": [
            "0.375rem",
            "0.5rem"
          ],
          "parents": [],
          "childs": []
        },
        "smart-table-separator": {
          "name": "smart-table-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "smart-table-border-radius": {
          "name": "smart-table-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "smart-table-paging-border-color": {
          "name": "smart-table-paging-border-color",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "smart-table-paging-border-width": {
          "name": "smart-table-paging-border-width",
          "value": "1px",
          "parents": [],
          "childs": []
        },
        "smart-table-paging-fg-active": {
          "name": "smart-table-paging-fg-active",
          "value": "#ffffff",
          "parents": [],
          "childs": []
        },
        "smart-table-paging-bg-active": {
          "name": "smart-table-paging-bg-active",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "smart-table-paging-hover": {
          "name": "smart-table-paging-hover",
          "value": "rgba(0, 0, 0, 0.05)",
          "parents": [],
          "childs": []
        },
        "toaster-bg": {
          "name": "toaster-bg",
          "value": "#8a7fff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "toaster-fg-default": {
          "name": "toaster-fg-default",
          "value": "color-inverse",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "toaster-btn-close-fg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-fg-default"
            }
          ]
        },
        "toaster-btn-close-bg": {
          "name": "toaster-btn-close-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "toaster-btn-close-bg"
            }
          ]
        },
        "toaster-btn-close-fg": {
          "name": "toaster-btn-close-fg",
          "value": "color-inverse",
          "parents": [
            {
              "theme": "default",
              "prop": "toaster-fg-default"
            }
          ],
          "childs": []
        },
        "toaster-shadow": {
          "name": "toaster-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "#dfe3eb"
          ],
          "parents": [
            {
              "theme": "default",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "toaster-fg": {
          "name": "toaster-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "toaster-success": {
          "name": "toaster-success",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "toaster-info": {
          "name": "toaster-info",
          "value": "#4ca6ff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "toaster-warning": {
          "name": "toaster-warning",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "toaster-wait": {
          "name": "toaster-wait",
          "value": "#8a7fff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "toaster-error": {
          "name": "toaster-error",
          "value": "#ff4c6a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "btn-fg": {
          "name": "btn-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "btn-font-family": {
          "name": "btn-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "btn-line-height": {
          "name": "btn-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "btn-disabled-opacity": {
          "name": "btn-disabled-opacity",
          "value": 0.3,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-disabled-opacity"
            }
          ]
        },
        "btn-cursor": {
          "name": "btn-cursor",
          "value": "default",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-cursor"
            }
          ]
        },
        "btn-primary-bg": {
          "name": "btn-primary-bg",
          "value": "#8a7fff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "btn-secondary-bg": {
          "name": "btn-secondary-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-secondary-bg"
            }
          ]
        },
        "btn-info-bg": {
          "name": "btn-info-bg",
          "value": "#4ca6ff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "btn-success-bg": {
          "name": "btn-success-bg",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "btn-warning-bg": {
          "name": "btn-warning-bg",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "btn-danger-bg": {
          "name": "btn-danger-bg",
          "value": "#ff4c6a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "btn-secondary-border": {
          "name": "btn-secondary-border",
          "value": "#dadfe6",
          "parents": [],
          "childs": []
        },
        "btn-secondary-border-width": {
          "name": "btn-secondary-border-width",
          "value": "2px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-secondary-border-width"
            }
          ]
        },
        "btn-padding-y-lg": {
          "name": "btn-padding-y-lg",
          "value": "0.875rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-y-lg"
            }
          ]
        },
        "btn-padding-x-lg": {
          "name": "btn-padding-x-lg",
          "value": "1.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-x-lg"
            }
          ]
        },
        "btn-font-size-lg": {
          "name": "btn-font-size-lg",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "btn-padding-y-md": {
          "name": "btn-padding-y-md",
          "value": "0.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-y-md"
            }
          ]
        },
        "btn-padding-x-md": {
          "name": "btn-padding-x-md",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-x-md"
            }
          ]
        },
        "btn-font-size-md": {
          "name": "btn-font-size-md",
          "value": "1rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-font-size-md"
            }
          ]
        },
        "btn-padding-y-sm": {
          "name": "btn-padding-y-sm",
          "value": "0.625rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-y-sm"
            }
          ]
        },
        "btn-padding-x-sm": {
          "name": "btn-padding-x-sm",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-x-sm"
            }
          ]
        },
        "btn-font-size-sm": {
          "name": "btn-font-size-sm",
          "value": "0.875rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-font-size-sm"
            }
          ]
        },
        "btn-padding-y-tn": {
          "name": "btn-padding-y-tn",
          "value": "0.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-y-tn"
            }
          ]
        },
        "btn-padding-x-tn": {
          "name": "btn-padding-x-tn",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-padding-x-tn"
            }
          ]
        },
        "btn-font-size-tn": {
          "name": "btn-font-size-tn",
          "value": "0.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-font-size-tn"
            }
          ]
        },
        "btn-border-radius": {
          "name": "btn-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "btn-rectangle-border-radius": {
          "name": "btn-rectangle-border-radius",
          "value": "0.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-rectangle-border-radius"
            }
          ]
        },
        "btn-semi-round-border-radius": {
          "name": "btn-semi-round-border-radius",
          "value": "0.75rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-semi-round-border-radius"
            }
          ]
        },
        "btn-round-border-radius": {
          "name": "btn-round-border-radius",
          "value": "1.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "btn-round-border-radius"
            }
          ]
        },
        "btn-hero-shadow": {
          "name": "btn-hero-shadow",
          "value": "none",
          "parents": [],
          "childs": []
        },
        "btn-hero-text-shadow": {
          "name": "btn-hero-text-shadow",
          "value": "none",
          "parents": [],
          "childs": []
        },
        "btn-hero-bevel-size": {
          "name": "btn-hero-bevel-size",
          "value": [
            0,
            0,
            0,
            0
          ],
          "parents": [],
          "childs": []
        },
        "btn-hero-glow-size": {
          "name": "btn-hero-glow-size",
          "value": [
            0,
            0,
            0,
            0
          ],
          "parents": [],
          "childs": []
        },
        "btn-outline-fg": {
          "name": "btn-outline-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "btn-outline-hover-fg": {
          "name": "btn-outline-hover-fg",
          "value": "#ffffff",
          "parents": [],
          "childs": []
        },
        "btn-group-bg": {
          "name": "btn-group-bg",
          "value": "#ebeff5",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-bg"
            }
          ],
          "childs": []
        },
        "btn-group-fg": {
          "name": "btn-group-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "btn-group-separator": {
          "name": "btn-group-separator",
          "value": "#dadfe6",
          "parents": [],
          "childs": []
        },
        "form-control-text-primary-color": {
          "name": "form-control-text-primary-color",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "form-control-text-secondary-color": {
          "name": "form-control-text-secondary-color",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "form-control-font-family": {
          "name": "form-control-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "form-control-bg": {
          "name": "form-control-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "form-control-focus-bg": {
          "name": "form-control-focus-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "form-control-border-width": {
          "name": "form-control-border-width",
          "value": "2px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-border-width"
            }
          ]
        },
        "form-control-border-type": {
          "name": "form-control-border-type",
          "value": "solid",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-border-type"
            }
          ]
        },
        "form-control-border-radius": {
          "name": "form-control-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "form-control-border-color": {
          "name": "form-control-border-color",
          "value": "#dadfe6",
          "parents": [],
          "childs": [
            {
              "theme": "default",
              "prop": "checkbox-border-color"
            }
          ]
        },
        "form-control-selected-border-color": {
          "name": "form-control-selected-border-color",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "form-control-info-border-color": {
          "name": "form-control-info-border-color",
          "value": "#4ca6ff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "form-control-success-border-color": {
          "name": "form-control-success-border-color",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "form-control-danger-border-color": {
          "name": "form-control-danger-border-color",
          "value": "#ff4c6a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "form-control-warning-border-color": {
          "name": "form-control-warning-border-color",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "form-control-placeholder-color": {
          "name": "form-control-placeholder-color",
          "value": "#a4abb3",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "form-control-placeholder-font-size": {
          "name": "form-control-placeholder-font-size",
          "value": "1rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-placeholder-font-size"
            }
          ]
        },
        "form-control-font-size": {
          "name": "form-control-font-size",
          "value": "1rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-font-size"
            }
          ]
        },
        "form-control-sm-font-size": {
          "name": "form-control-sm-font-size",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-sm"
            }
          ],
          "childs": []
        },
        "form-control-sm-padding": {
          "name": "form-control-sm-padding",
          "value": [
            "0.375rem",
            "1.125rem"
          ],
          "parents": [],
          "childs": []
        },
        "form-control-lg-font-size": {
          "name": "form-control-lg-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "form-control-lg-padding": {
          "name": "form-control-lg-padding",
          "value": "1.125rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-lg-padding"
            }
          ]
        },
        "form-control-label-font-weight": {
          "name": "form-control-label-font-weight",
          "value": 400,
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-label-font-weight"
            }
          ]
        },
        "form-control-feedback-font-size": {
          "name": "form-control-feedback-font-size",
          "value": "0.875rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-feedback-font-size"
            }
          ]
        },
        "form-control-feedback-font-weight": {
          "name": "form-control-feedback-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "checkbox-bg": {
          "name": "checkbox-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "checkbox-bg"
            }
          ]
        },
        "checkbox-size": {
          "name": "checkbox-size",
          "value": "1.25rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "checkbox-size"
            }
          ]
        },
        "checkbox-border-size": {
          "name": "checkbox-border-size",
          "value": "2px",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "checkbox-border-size"
            }
          ]
        },
        "checkbox-border-color": {
          "name": "checkbox-border-color",
          "value": "#dadfe6",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-border-color"
            }
          ],
          "childs": []
        },
        "checkbox-selected-border-color": {
          "name": "checkbox-selected-border-color",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "checkbox-fg": {
          "name": "checkbox-fg",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "radio-fg": {
          "name": "radio-fg",
          "value": "#40dc7e",
          "parents": [
            {
              "theme": "default",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "modal-font-size": {
          "name": "modal-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "modal-line-height": {
          "name": "modal-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "modal-font-weight": {
          "name": "modal-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "modal-fg": {
          "name": "modal-fg",
          "value": "#4b4b4b",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "modal-fg-heading": {
          "name": "modal-fg-heading",
          "value": "#2a2a2a",
          "parents": [
            {
              "theme": "default",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "modal-bg": {
          "name": "modal-bg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "modal-border": {
          "name": "modal-border",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "modal-border"
            }
          ]
        },
        "modal-border-radius": {
          "name": "modal-border-radius",
          "value": "0.375rem",
          "parents": [
            {
              "theme": "default",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "modal-padding": {
          "name": "modal-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "modal-header-font-family": {
          "name": "modal-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-secondary"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "modal-header-font-weight": {
          "name": "modal-header-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "modal-header-font-size": {
          "name": "modal-header-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "modal-body-font-family": {
          "name": "modal-body-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "modal-body-font-weight": {
          "name": "modal-body-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "modal-body-font-size": {
          "name": "modal-body-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "modal-separator": {
          "name": "modal-separator",
          "value": "#ebeef2",
          "parents": [
            {
              "theme": "default",
              "prop": "separator"
            }
          ],
          "childs": []
        }
      },
      "name": "default",
      "parent": null
    },
    "cosmic": {
      "data": {
        "font-main": {
          "name": "font-main",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "layout-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-content-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "modal-body-font-family"
            }
          ]
        },
        "font-secondary": {
          "name": "font-secondary",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "header-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "menu-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "user-font-family-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "actions-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-header-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "btn-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-font-family"
            },
            {
              "theme": "cosmic",
              "prop": "modal-header-font-family"
            }
          ]
        },
        "font-weight-thin": {
          "name": "font-weight-thin",
          "value": 200,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-thin"
            }
          ],
          "childs": []
        },
        "font-weight-light": {
          "name": "font-weight-light",
          "value": 300,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-light"
            }
          ],
          "childs": []
        },
        "font-weight-normal": {
          "name": "font-weight-normal",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "menu-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-feedback-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "modal-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "modal-body-font-weight"
            }
          ]
        },
        "font-weight-bolder": {
          "name": "font-weight-bolder",
          "value": 500,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "menu-active-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "menu-group-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "modal-header-font-weight"
            }
          ]
        },
        "font-weight-bold": {
          "name": "font-weight-bold",
          "value": 600,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-bold"
            }
          ],
          "childs": []
        },
        "font-weight-ultra-bold": {
          "name": "font-weight-ultra-bold",
          "value": 800,
          "parents": [
            {
              "theme": "default",
              "prop": "font-weight-ultra-bold"
            }
          ],
          "childs": []
        },
        "base-font-size": {
          "name": "base-font-size",
          "value": "16px",
          "parents": [
            {
              "theme": "default",
              "prop": "base-font-size"
            }
          ],
          "childs": []
        },
        "font-size-xlg": {
          "name": "font-size-xlg",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-xlg"
            }
          ],
          "childs": []
        },
        "font-size-lg": {
          "name": "font-size-lg",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "btn-font-size-lg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-lg-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "modal-header-font-size"
            }
          ]
        },
        "font-size": {
          "name": "font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "header-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "layout-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "sidebar-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "menu-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-content-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "user-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "actions-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-header-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "modal-font-size"
            },
            {
              "theme": "cosmic",
              "prop": "modal-body-font-size"
            }
          ]
        },
        "font-size-sm": {
          "name": "font-size-sm",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-sm"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "form-control-sm-font-size"
            }
          ]
        },
        "font-size-xs": {
          "name": "font-size-xs",
          "value": "0.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "font-size-xs"
            }
          ],
          "childs": []
        },
        "radius": {
          "name": "radius",
          "value": "0.5rem",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-border-radius"
            },
            {
              "theme": "cosmic",
              "prop": "menu-submenu-item-border-radius"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-border-radius"
            },
            {
              "theme": "cosmic",
              "prop": "btn-border-radius"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-border-radius"
            },
            {
              "theme": "cosmic",
              "prop": "modal-border-radius"
            }
          ]
        },
        "padding": {
          "name": "padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-padding"
            },
            {
              "theme": "cosmic",
              "prop": "sidebar-padding"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-padding"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-padding"
            },
            {
              "theme": "cosmic",
              "prop": "actions-padding"
            },
            {
              "theme": "cosmic",
              "prop": "modal-padding"
            }
          ]
        },
        "margin": {
          "name": "margin",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "margin"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-margin"
            }
          ]
        },
        "line-height": {
          "name": "line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "header-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "layout-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "sidebar-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "user-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "actions-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-header-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "btn-line-height"
            },
            {
              "theme": "cosmic",
              "prop": "modal-line-height"
            }
          ]
        },
        "color-bg": {
          "name": "color-bg",
          "value": "#3d3780",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-bg"
            },
            {
              "theme": "cosmic",
              "prop": "card-header-active-fg"
            },
            {
              "theme": "cosmic",
              "prop": "header-bg"
            },
            {
              "theme": "cosmic",
              "prop": "footer-bg"
            },
            {
              "theme": "cosmic",
              "prop": "sidebar-bg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-bg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-active-bg"
            },
            {
              "theme": "cosmic",
              "prop": "user-fg"
            },
            {
              "theme": "cosmic",
              "prop": "user-menu-bg"
            },
            {
              "theme": "cosmic",
              "prop": "actions-bg"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-bg"
            },
            {
              "theme": "cosmic",
              "prop": "modal-bg"
            }
          ]
        },
        "color-bg-active": {
          "name": "color-bg-active",
          "value": "#494299",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "smart-table-header-bg"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-bg-active"
            }
          ]
        },
        "color-fg": {
          "name": "color-fg",
          "value": "#a1a1e5",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-fg"
            },
            {
              "theme": "cosmic",
              "prop": "card-header-fg"
            },
            {
              "theme": "cosmic",
              "prop": "card-header-active-bg"
            },
            {
              "theme": "cosmic",
              "prop": "footer-fg"
            },
            {
              "theme": "cosmic",
              "prop": "layout-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-submenu-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-icon-color"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-fg"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-fg"
            },
            {
              "theme": "cosmic",
              "prop": "user-bg"
            },
            {
              "theme": "cosmic",
              "prop": "actions-fg"
            },
            {
              "theme": "cosmic",
              "prop": "search-btn-open-fg"
            },
            {
              "theme": "cosmic",
              "prop": "search-btn-close-fg"
            },
            {
              "theme": "cosmic",
              "prop": "search-bg-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "search-info"
            },
            {
              "theme": "cosmic",
              "prop": "search-dash"
            },
            {
              "theme": "cosmic",
              "prop": "search-placeholder"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-fg-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-text-secondary-color"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-placeholder-color"
            },
            {
              "theme": "cosmic",
              "prop": "checkbox-border-color"
            }
          ]
        },
        "color-fg-heading": {
          "name": "color-fg-heading",
          "value": "#ffffff",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-fg-heading"
            },
            {
              "theme": "cosmic",
              "prop": "card-header-fg-heading"
            },
            {
              "theme": "cosmic",
              "prop": "menu-submenu-active-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-icon-active-color"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-fg-heading"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-fg-heading"
            },
            {
              "theme": "cosmic",
              "prop": "user-menu-fg"
            },
            {
              "theme": "cosmic",
              "prop": "search-text"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-header-fg"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-fg"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-paging-fg-active"
            },
            {
              "theme": "cosmic",
              "prop": "btn-outline-fg"
            },
            {
              "theme": "cosmic",
              "prop": "btn-outline-hover-fg"
            },
            {
              "theme": "cosmic",
              "prop": "btn-group-fg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-text-primary-color"
            },
            {
              "theme": "cosmic",
              "prop": "checkbox-fg"
            },
            {
              "theme": "cosmic",
              "prop": "radio-fg"
            },
            {
              "theme": "cosmic",
              "prop": "modal-fg-heading"
            }
          ]
        },
        "color-fg-text": {
          "name": "color-fg-text",
          "value": "#d1d1ff",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-fg-text"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-fg-text"
            },
            {
              "theme": "cosmic",
              "prop": "modal-fg"
            }
          ]
        },
        "color-fg-highlight": {
          "name": "color-fg-highlight",
          "value": "#00f9a6",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-active-border-color"
            },
            {
              "theme": "cosmic",
              "prop": "user-fg-highlight"
            }
          ]
        },
        "separator": {
          "name": "separator",
          "value": "#342e73",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-separator"
            },
            {
              "theme": "cosmic",
              "prop": "footer-separator"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-separator"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-separator"
            },
            {
              "theme": "cosmic",
              "prop": "actions-separator"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-separator"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-focus-bg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-border-color"
            },
            {
              "theme": "cosmic",
              "prop": "modal-separator"
            }
          ]
        },
        "color-gray": {
          "name": "color-gray",
          "value": "rgba(81, 113, 165, 0.15)",
          "parents": [
            {
              "theme": "default",
              "prop": "color-gray"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "border-color"
            }
          ]
        },
        "color-neutral": {
          "name": "color-neutral",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "color-neutral"
            }
          ],
          "childs": []
        },
        "color-white": {
          "name": "color-white",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "header-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-active-fg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-group-fg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-fg"
            },
            {
              "theme": "cosmic",
              "prop": "btn-fg"
            }
          ]
        },
        "color-disabled": {
          "name": "color-disabled",
          "value": "rgba(255, 255, 255, 0.4)",
          "parents": [
            {
              "theme": "default",
              "prop": "color-disabled"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-disabled-bg"
            }
          ]
        },
        "color-primary": {
          "name": "color-primary",
          "value": "#7659ff",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-primary-bg"
            },
            {
              "theme": "cosmic",
              "prop": "user-menu-active-bg"
            },
            {
              "theme": "cosmic",
              "prop": "user-menu-border"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-paging-border-color"
            },
            {
              "theme": "cosmic",
              "prop": "smart-table-paging-bg-active"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-bg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-wait"
            },
            {
              "theme": "cosmic",
              "prop": "btn-primary-bg"
            },
            {
              "theme": "cosmic",
              "prop": "btn-secondary-border"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-selected-border-color"
            }
          ]
        },
        "color-success": {
          "name": "color-success",
          "value": "#00d977",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-success-bg"
            },
            {
              "theme": "cosmic",
              "prop": "tabs-selected"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-selected"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-success"
            },
            {
              "theme": "cosmic",
              "prop": "btn-success-bg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-success-border-color"
            },
            {
              "theme": "cosmic",
              "prop": "checkbox-selected-border-color"
            }
          ]
        },
        "color-info": {
          "name": "color-info",
          "value": "#0088ff",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-info-bg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-info"
            },
            {
              "theme": "cosmic",
              "prop": "btn-info-bg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-info-border-color"
            }
          ]
        },
        "color-warning": {
          "name": "color-warning",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-warning-bg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-warning"
            },
            {
              "theme": "cosmic",
              "prop": "btn-warning-bg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-warning-border-color"
            }
          ]
        },
        "color-danger": {
          "name": "color-danger",
          "value": "#ff386a",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-header-danger-bg"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-error"
            },
            {
              "theme": "cosmic",
              "prop": "btn-danger-bg"
            },
            {
              "theme": "cosmic",
              "prop": "form-control-danger-border-color"
            }
          ]
        },
        "social-color-facebook": {
          "name": "social-color-facebook",
          "value": "#3b5998",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-facebook"
            }
          ],
          "childs": []
        },
        "social-color-twitter": {
          "name": "social-color-twitter",
          "value": "#55acee",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-twitter"
            }
          ],
          "childs": []
        },
        "social-color-google": {
          "name": "social-color-google",
          "value": "#dd4b39",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-google"
            }
          ],
          "childs": []
        },
        "social-color-linkedin": {
          "name": "social-color-linkedin",
          "value": "#0177b5",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-linkedin"
            }
          ],
          "childs": []
        },
        "social-color-github": {
          "name": "social-color-github",
          "value": "#6b6b6b",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-github"
            }
          ],
          "childs": []
        },
        "social-color-stackoverflow": {
          "name": "social-color-stackoverflow",
          "value": "#2f96e8",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-stackoverflow"
            }
          ],
          "childs": []
        },
        "social-color-dribble": {
          "name": "social-color-dribble",
          "value": "#f26798",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-dribble"
            }
          ],
          "childs": []
        },
        "social-color-behance": {
          "name": "social-color-behance",
          "value": "#0093fa",
          "parents": [
            {
              "theme": "default",
              "prop": "social-color-behance"
            }
          ],
          "childs": []
        },
        "border-color": {
          "name": "border-color",
          "value": "rgba(81, 113, 165, 0.15)",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-gray"
            },
            {
              "theme": "default",
              "prop": "color-gray"
            }
          ],
          "childs": []
        },
        "shadow": {
          "name": "shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "card-shadow"
            },
            {
              "theme": "cosmic",
              "prop": "header-shadow"
            },
            {
              "theme": "cosmic",
              "prop": "footer-shadow"
            },
            {
              "theme": "cosmic",
              "prop": "layout-window-shadow"
            },
            {
              "theme": "cosmic",
              "prop": "sidebar-shadow"
            },
            {
              "theme": "cosmic",
              "prop": "toaster-shadow"
            }
          ]
        },
        "link-color": {
          "name": "link-color",
          "value": "#00f9a6",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "link-color-visited"
            }
          ]
        },
        "link-color-hover": {
          "name": "link-color-hover",
          "value": "#14ffbe",
          "parents": [],
          "childs": []
        },
        "link-color-visited": {
          "name": "link-color-visited",
          "value": "#00f9a6",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "link-color"
            }
          ],
          "childs": []
        },
        "scrollbar-fg": {
          "name": "scrollbar-fg",
          "value": "#554db3",
          "parents": [],
          "childs": []
        },
        "scrollbar-bg": {
          "name": "scrollbar-bg",
          "value": "#332e73",
          "parents": [],
          "childs": []
        },
        "scrollbar-width": {
          "name": "scrollbar-width",
          "value": "5px",
          "parents": [
            {
              "theme": "default",
              "prop": "scrollbar-width"
            }
          ],
          "childs": []
        },
        "scrollbar-thumb-radius": {
          "name": "scrollbar-thumb-radius",
          "value": "2.5px",
          "parents": [
            {
              "theme": "default",
              "prop": "scrollbar-thumb-radius"
            }
          ],
          "childs": []
        },
        "radial-gradient": {
          "name": "radial-gradient",
          "value": "radial-gradient(circle at 50% 50%, #423f8c, #302c6e)",
          "parents": [],
          "childs": []
        },
        "linear-gradient": {
          "name": "linear-gradient",
          "value": "linear-gradient(to right, #171749, #413789)",
          "parents": [],
          "childs": []
        },
        "card-font-size": {
          "name": "card-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "card-line-height": {
          "name": "card-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "card-font-weight": {
          "name": "card-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "card-fg": {
          "name": "card-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-fg-text": {
          "name": "card-fg-text",
          "value": "#d1d1ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "card-fg-heading": {
          "name": "card-fg-heading",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "card-bg": {
          "name": "card-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "card-height-xxsmall": {
          "name": "card-height-xxsmall",
          "value": "96px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-xxsmall"
            }
          ],
          "childs": []
        },
        "card-height-xsmall": {
          "name": "card-height-xsmall",
          "value": "216px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-xsmall"
            }
          ],
          "childs": []
        },
        "card-height-small": {
          "name": "card-height-small",
          "value": "336px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-small"
            }
          ],
          "childs": []
        },
        "card-height-medium": {
          "name": "card-height-medium",
          "value": "456px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-medium"
            }
          ],
          "childs": []
        },
        "card-height-large": {
          "name": "card-height-large",
          "value": "576px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-large"
            }
          ],
          "childs": []
        },
        "card-height-xlarge": {
          "name": "card-height-xlarge",
          "value": "696px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-xlarge"
            }
          ],
          "childs": []
        },
        "card-height-xxlarge": {
          "name": "card-height-xxlarge",
          "value": "816px",
          "parents": [
            {
              "theme": "default",
              "prop": "card-height-xxlarge"
            }
          ],
          "childs": []
        },
        "card-shadow": {
          "name": "card-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "card-border-radius": {
          "name": "card-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "card-padding": {
          "name": "card-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "card-margin": {
          "name": "card-margin",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "margin"
            },
            {
              "theme": "default",
              "prop": "margin"
            }
          ],
          "childs": []
        },
        "card-header-font-family": {
          "name": "card-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "card-header-font-size": {
          "name": "card-header-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "card-header-font-weight": {
          "name": "card-header-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "tabs-active-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "route-tabs-active-font-weight"
            }
          ]
        },
        "card-separator": {
          "name": "card-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "card-header-fg": {
          "name": "card-header-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-header-fg-heading": {
          "name": "card-header-fg-heading",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "card-header-active-bg": {
          "name": "card-header-active-bg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "card-header-active-fg": {
          "name": "card-header-active-fg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "card-header-disabled-bg": {
          "name": "card-header-disabled-bg",
          "value": "rgba(255, 255, 255, 0.4)",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-disabled"
            },
            {
              "theme": "default",
              "prop": "color-disabled"
            }
          ],
          "childs": []
        },
        "card-header-primary-bg": {
          "name": "card-header-primary-bg",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "card-header-info-bg": {
          "name": "card-header-info-bg",
          "value": "#0088ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "card-header-success-bg": {
          "name": "card-header-success-bg",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "card-header-warning-bg": {
          "name": "card-header-warning-bg",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-warning"
            },
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "card-header-danger-bg": {
          "name": "card-header-danger-bg",
          "value": "#ff386a",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "header-font-family": {
          "name": "header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "header-font-size": {
          "name": "header-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "header-line-height": {
          "name": "header-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "header-fg": {
          "name": "header-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-white"
            },
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "header-bg": {
          "name": "header-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "header-height": {
          "name": "header-height",
          "value": "4.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "header-height"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "footer-height"
            }
          ]
        },
        "header-padding": {
          "name": "header-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "header-padding"
            }
          ],
          "childs": []
        },
        "header-shadow": {
          "name": "header-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "footer-height": {
          "name": "footer-height",
          "value": "4.75rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "header-height"
            },
            {
              "theme": "default",
              "prop": "header-height"
            }
          ],
          "childs": []
        },
        "footer-padding": {
          "name": "footer-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "footer-padding"
            }
          ],
          "childs": []
        },
        "footer-fg": {
          "name": "footer-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "footer-bg": {
          "name": "footer-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "footer-separator": {
          "name": "footer-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "footer-shadow": {
          "name": "footer-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "layout-font-family": {
          "name": "layout-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "layout-font-size": {
          "name": "layout-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "layout-line-height": {
          "name": "layout-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "layout-fg": {
          "name": "layout-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "layout-bg": {
          "name": "layout-bg",
          "value": "#2f296b",
          "parents": [],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "layout-window-mode-bg"
            },
            {
              "theme": "cosmic",
              "prop": "menu-submenu-bg"
            }
          ]
        },
        "layout-min-height": {
          "name": "layout-min-height",
          "value": "100vh",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-min-height"
            }
          ],
          "childs": []
        },
        "layout-content-width": {
          "name": "layout-content-width",
          "value": "900px",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-content-width"
            }
          ],
          "childs": []
        },
        "layout-window-mode-min-width": {
          "name": "layout-window-mode-min-width",
          "value": "300px",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-window-mode-min-width"
            }
          ],
          "childs": []
        },
        "layout-window-mode-max-width": {
          "name": "layout-window-mode-max-width",
          "value": "1920px",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-window-mode-max-width"
            }
          ],
          "childs": []
        },
        "layout-window-mode-bg": {
          "name": "layout-window-mode-bg",
          "value": "#2f296b",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "layout-bg"
            }
          ],
          "childs": []
        },
        "layout-window-mode-padding-top": {
          "name": "layout-window-mode-padding-top",
          "value": "4.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "layout-window-mode-padding-top"
            }
          ],
          "childs": []
        },
        "layout-window-shadow": {
          "name": "layout-window-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "layout-padding": {
          "name": "layout-padding",
          "value": [
            "2.25rem",
            "2.25rem",
            "0.75rem"
          ],
          "parents": [],
          "childs": []
        },
        "layout-medium-padding": {
          "name": "layout-medium-padding",
          "value": [
            "1.5rem",
            "1.5rem",
            "0.5rem"
          ],
          "parents": [],
          "childs": []
        },
        "layout-small-padding": {
          "name": "layout-small-padding",
          "value": [
            "1rem",
            "1rem",
            0
          ],
          "parents": [],
          "childs": []
        },
        "sidebar-font-size": {
          "name": "sidebar-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "sidebar-line-height": {
          "name": "sidebar-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "sidebar-fg": {
          "name": "sidebar-fg",
          "value": "color-secondary",
          "parents": [],
          "childs": []
        },
        "sidebar-bg": {
          "name": "sidebar-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "sidebar-height": {
          "name": "sidebar-height",
          "value": "100vh",
          "parents": [
            {
              "theme": "default",
              "prop": "sidebar-height"
            }
          ],
          "childs": []
        },
        "sidebar-width": {
          "name": "sidebar-width",
          "value": "16.25rem",
          "parents": [],
          "childs": []
        },
        "sidebar-width-compact": {
          "name": "sidebar-width-compact",
          "value": "3.45rem",
          "parents": [],
          "childs": []
        },
        "sidebar-padding": {
          "name": "sidebar-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "sidebar-header-height": {
          "name": "sidebar-header-height",
          "value": "3.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "sidebar-header-height"
            }
          ],
          "childs": []
        },
        "sidebar-footer-height": {
          "name": "sidebar-footer-height",
          "value": "3.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "sidebar-footer-height"
            }
          ],
          "childs": []
        },
        "sidebar-shadow": {
          "name": "sidebar-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "menu-font-family": {
          "name": "menu-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "menu-font-size": {
          "name": "menu-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "menu-font-weight": {
          "name": "menu-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "menu-fg": {
          "name": "menu-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "menu-bg": {
          "name": "menu-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-active-fg": {
          "name": "menu-active-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-white"
            },
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "menu-active-bg": {
          "name": "menu-active-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "menu-active-font-weight": {
          "name": "menu-active-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "menu-submenu-bg": {
          "name": "menu-submenu-bg",
          "value": "#2f296b",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "layout-bg"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-hover-bg"
            }
          ]
        },
        "menu-submenu-fg": {
          "name": "menu-submenu-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "menu-submenu-active-fg": {
          "name": "menu-submenu-active-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-hover-fg"
            }
          ]
        },
        "menu-submenu-active-bg": {
          "name": "menu-submenu-active-bg",
          "value": "rgba(0, 255, 170, 0.25)",
          "parents": [],
          "childs": []
        },
        "menu-submenu-active-border-color": {
          "name": "menu-submenu-active-border-color",
          "value": "#00f9a6",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-highlight"
            }
          ],
          "childs": []
        },
        "menu-submenu-active-shadow": {
          "name": "menu-submenu-active-shadow",
          "value": [
            0,
            "2px",
            "12px",
            0,
            "rgba(0, 255, 170, 0.25)"
          ],
          "parents": [],
          "childs": []
        },
        "menu-submenu-hover-fg": {
          "name": "menu-submenu-hover-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-active-fg"
            },
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "menu-submenu-hover-bg": {
          "name": "menu-submenu-hover-bg",
          "value": "#2f296b",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "menu-submenu-bg"
            },
            {
              "theme": "cosmic",
              "prop": "layout-bg"
            }
          ],
          "childs": []
        },
        "menu-submenu-item-border-width": {
          "name": "menu-submenu-item-border-width",
          "value": "0.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-submenu-item-border-width"
            }
          ],
          "childs": []
        },
        "menu-submenu-item-border-radius": {
          "name": "menu-submenu-item-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "menu-submenu-item-padding": {
          "name": "menu-submenu-item-padding",
          "value": [
            "0.5rem",
            "1rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-submenu-item-container-padding": {
          "name": "menu-submenu-item-container-padding",
          "value": [
            0,
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-submenu-padding": {
          "name": "menu-submenu-padding",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-submenu-padding"
            }
          ],
          "childs": []
        },
        "menu-group-font-weight": {
          "name": "menu-group-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "menu-group-font-size": {
          "name": "menu-group-font-size",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-group-font-size"
            }
          ],
          "childs": []
        },
        "menu-group-fg": {
          "name": "menu-group-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-white"
            },
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "menu-group-padding": {
          "name": "menu-group-padding",
          "value": [
            "1rem",
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-item-padding": {
          "name": "menu-item-padding",
          "value": [
            "0.25rem",
            "1rem",
            "0.25rem",
            "0.75rem"
          ],
          "parents": [],
          "childs": []
        },
        "menu-item-separator": {
          "name": "menu-item-separator",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [],
          "childs": []
        },
        "menu-icon-font-size": {
          "name": "menu-icon-font-size",
          "value": "2.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "menu-icon-font-size"
            }
          ],
          "childs": []
        },
        "menu-icon-margin": {
          "name": "menu-icon-margin",
          "value": [
            0,
            "0.5rem",
            0,
            0
          ],
          "parents": [],
          "childs": []
        },
        "menu-icon-color": {
          "name": "menu-icon-color",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "menu-icon-active-color": {
          "name": "menu-icon-active-color",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "tabs-font-family": {
          "name": "tabs-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "tabs-font-size": {
          "name": "tabs-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "tabs-content-font-family": {
          "name": "tabs-content-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "tabs-content-font-size": {
          "name": "tabs-content-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "tabs-active-bg": {
          "name": "tabs-active-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "tabs-active-bg"
            }
          ],
          "childs": []
        },
        "tabs-active-font-weight": {
          "name": "tabs-active-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "tabs-padding": {
          "name": "tabs-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "tabs-content-padding": {
          "name": "tabs-content-padding",
          "value": 0,
          "parents": [
            {
              "theme": "default",
              "prop": "tabs-content-padding"
            }
          ],
          "childs": []
        },
        "tabs-header-bg": {
          "name": "tabs-header-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "tabs-header-bg"
            }
          ],
          "childs": []
        },
        "tabs-separator": {
          "name": "tabs-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "tabs-fg": {
          "name": "tabs-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "tabs-fg-text": {
          "name": "tabs-fg-text",
          "value": "#d1d1ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "tabs-fg-heading": {
          "name": "tabs-fg-heading",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "tabs-bg": {
          "name": "tabs-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "tabs-bg"
            }
          ],
          "childs": []
        },
        "tabs-selected": {
          "name": "tabs-selected",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "route-tabs-font-family": {
          "name": "route-tabs-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "route-tabs-font-size": {
          "name": "route-tabs-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "route-tabs-active-bg": {
          "name": "route-tabs-active-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "route-tabs-active-bg"
            }
          ],
          "childs": []
        },
        "route-tabs-active-font-weight": {
          "name": "route-tabs-active-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "card-header-font-weight"
            },
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "route-tabs-padding": {
          "name": "route-tabs-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "route-tabs-header-bg": {
          "name": "route-tabs-header-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "route-tabs-header-bg"
            }
          ],
          "childs": []
        },
        "route-tabs-separator": {
          "name": "route-tabs-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "route-tabs-fg": {
          "name": "route-tabs-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "route-tabs-fg-heading": {
          "name": "route-tabs-fg-heading",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "route-tabs-bg": {
          "name": "route-tabs-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "route-tabs-bg"
            }
          ],
          "childs": []
        },
        "route-tabs-selected": {
          "name": "route-tabs-selected",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "user-font-size": {
          "name": "user-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "user-line-height": {
          "name": "user-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "user-bg": {
          "name": "user-bg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "user-fg": {
          "name": "user-fg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "user-fg-highlight": {
          "name": "user-fg-highlight",
          "value": "#00f9a6",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-highlight"
            }
          ],
          "childs": []
        },
        "user-font-family-secondary": {
          "name": "user-font-family-secondary",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "user-size-small": {
          "name": "user-size-small",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "user-size-small"
            }
          ],
          "childs": []
        },
        "user-size-medium": {
          "name": "user-size-medium",
          "value": "2.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "user-size-medium"
            }
          ],
          "childs": []
        },
        "user-size-large": {
          "name": "user-size-large",
          "value": "3.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "user-size-large"
            }
          ],
          "childs": []
        },
        "user-size-xlarge": {
          "name": "user-size-xlarge",
          "value": "4rem",
          "parents": [
            {
              "theme": "default",
              "prop": "user-size-xlarge"
            }
          ],
          "childs": []
        },
        "user-menu-fg": {
          "name": "user-menu-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "user-menu-bg": {
          "name": "user-menu-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "user-menu-active-fg": {
          "name": "user-menu-active-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "default",
              "prop": "user-menu-active-fg"
            }
          ],
          "childs": []
        },
        "user-menu-active-bg": {
          "name": "user-menu-active-bg",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "user-menu-border": {
          "name": "user-menu-border",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "actions-font-size": {
          "name": "actions-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "actions-font-family": {
          "name": "actions-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "actions-line-height": {
          "name": "actions-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "actions-fg": {
          "name": "actions-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "actions-bg": {
          "name": "actions-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "actions-separator": {
          "name": "actions-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "actions-padding": {
          "name": "actions-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "actions-size-small": {
          "name": "actions-size-small",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "actions-size-small"
            }
          ],
          "childs": []
        },
        "actions-size-medium": {
          "name": "actions-size-medium",
          "value": "2.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "actions-size-medium"
            }
          ],
          "childs": []
        },
        "actions-size-large": {
          "name": "actions-size-large",
          "value": "3.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "actions-size-large"
            }
          ],
          "childs": []
        },
        "search-btn-open-fg": {
          "name": "search-btn-open-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-btn-close-fg": {
          "name": "search-btn-close-fg",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-bg": {
          "name": "search-bg",
          "value": "linear-gradient(to right, #171749, #413789)",
          "parents": [],
          "childs": []
        },
        "search-bg-secondary": {
          "name": "search-bg-secondary",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-text": {
          "name": "search-text",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "search-info": {
          "name": "search-info",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-dash": {
          "name": "search-dash",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "search-placeholder": {
          "name": "search-placeholder",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-family": {
          "name": "smart-table-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-size": {
          "name": "smart-table-header-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "smart-table-header-font-weight": {
          "name": "smart-table-header-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "smart-table-header-line-height": {
          "name": "smart-table-header-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "smart-table-header-fg": {
          "name": "smart-table-header-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "smart-table-header-bg": {
          "name": "smart-table-header-bg",
          "value": "#494299",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg-active"
            }
          ],
          "childs": []
        },
        "smart-table-font-family": {
          "name": "smart-table-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "smart-table-font-size": {
          "name": "smart-table-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "smart-table-font-weight": {
          "name": "smart-table-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "smart-table-line-height": {
          "name": "smart-table-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "smart-table-fg": {
          "name": "smart-table-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "smart-table-bg": {
          "name": "smart-table-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "smart-table-bg-even": {
          "name": "smart-table-bg-even",
          "value": "#3a347a",
          "parents": [],
          "childs": []
        },
        "smart-table-fg-secondary": {
          "name": "smart-table-fg-secondary",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "smart-table-bg-active": {
          "name": "smart-table-bg-active",
          "value": "#494299",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg-active"
            }
          ],
          "childs": []
        },
        "smart-table-padding": {
          "name": "smart-table-padding",
          "value": [
            "0.875rem",
            "1.25rem"
          ],
          "parents": [],
          "childs": []
        },
        "smart-table-filter-padding": {
          "name": "smart-table-filter-padding",
          "value": [
            "0.375rem",
            "0.5rem"
          ],
          "parents": [],
          "childs": []
        },
        "smart-table-separator": {
          "name": "smart-table-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "smart-table-border-radius": {
          "name": "smart-table-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "smart-table-paging-border-color": {
          "name": "smart-table-paging-border-color",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "smart-table-paging-border-width": {
          "name": "smart-table-paging-border-width",
          "value": "2px",
          "parents": [],
          "childs": []
        },
        "smart-table-paging-fg-active": {
          "name": "smart-table-paging-fg-active",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "smart-table-paging-bg-active": {
          "name": "smart-table-paging-bg-active",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "smart-table-paging-hover": {
          "name": "smart-table-paging-hover",
          "value": "rgba(0, 0, 0, 0.2)",
          "parents": [],
          "childs": []
        },
        "toaster-bg": {
          "name": "toaster-bg",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "toaster-fg-default": {
          "name": "toaster-fg-default",
          "value": "color-inverse",
          "parents": [
            {
              "theme": "default",
              "prop": "toaster-fg-default"
            }
          ],
          "childs": [
            {
              "theme": "cosmic",
              "prop": "toaster-btn-close-fg"
            }
          ]
        },
        "toaster-btn-close-bg": {
          "name": "toaster-btn-close-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "toaster-btn-close-bg"
            }
          ],
          "childs": []
        },
        "toaster-btn-close-fg": {
          "name": "toaster-btn-close-fg",
          "value": "color-inverse",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "toaster-fg-default"
            },
            {
              "theme": "default",
              "prop": "toaster-fg-default"
            }
          ],
          "childs": []
        },
        "toaster-shadow": {
          "name": "toaster-shadow",
          "value": [
            0,
            "8px",
            "20px",
            0,
            "rgba(40, 37, 89, 0.6)"
          ],
          "parents": [
            {
              "theme": "cosmic",
              "prop": "shadow"
            }
          ],
          "childs": []
        },
        "toaster-fg": {
          "name": "toaster-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-white"
            },
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "toaster-success": {
          "name": "toaster-success",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "toaster-info": {
          "name": "toaster-info",
          "value": "#0088ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "toaster-warning": {
          "name": "toaster-warning",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-warning"
            },
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "toaster-wait": {
          "name": "toaster-wait",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "toaster-error": {
          "name": "toaster-error",
          "value": "#ff386a",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "btn-fg": {
          "name": "btn-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-white"
            },
            {
              "theme": "default",
              "prop": "color-white"
            }
          ],
          "childs": []
        },
        "btn-font-family": {
          "name": "btn-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "btn-line-height": {
          "name": "btn-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "btn-disabled-opacity": {
          "name": "btn-disabled-opacity",
          "value": 0.3,
          "parents": [
            {
              "theme": "default",
              "prop": "btn-disabled-opacity"
            }
          ],
          "childs": []
        },
        "btn-cursor": {
          "name": "btn-cursor",
          "value": "default",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-cursor"
            }
          ],
          "childs": []
        },
        "btn-primary-bg": {
          "name": "btn-primary-bg",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "btn-secondary-bg": {
          "name": "btn-secondary-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-secondary-bg"
            }
          ],
          "childs": []
        },
        "btn-info-bg": {
          "name": "btn-info-bg",
          "value": "#0088ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "btn-success-bg": {
          "name": "btn-success-bg",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "btn-warning-bg": {
          "name": "btn-warning-bg",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-warning"
            },
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "btn-danger-bg": {
          "name": "btn-danger-bg",
          "value": "#ff386a",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "btn-secondary-border": {
          "name": "btn-secondary-border",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "btn-secondary-border-width": {
          "name": "btn-secondary-border-width",
          "value": "2px",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-secondary-border-width"
            }
          ],
          "childs": []
        },
        "btn-padding-y-lg": {
          "name": "btn-padding-y-lg",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-y-lg"
            }
          ],
          "childs": []
        },
        "btn-padding-x-lg": {
          "name": "btn-padding-x-lg",
          "value": "1.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-x-lg"
            }
          ],
          "childs": []
        },
        "btn-font-size-lg": {
          "name": "btn-font-size-lg",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "btn-padding-y-md": {
          "name": "btn-padding-y-md",
          "value": "0.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-y-md"
            }
          ],
          "childs": []
        },
        "btn-padding-x-md": {
          "name": "btn-padding-x-md",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-x-md"
            }
          ],
          "childs": []
        },
        "btn-font-size-md": {
          "name": "btn-font-size-md",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-font-size-md"
            }
          ],
          "childs": []
        },
        "btn-padding-y-sm": {
          "name": "btn-padding-y-sm",
          "value": "0.625rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-y-sm"
            }
          ],
          "childs": []
        },
        "btn-padding-x-sm": {
          "name": "btn-padding-x-sm",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-x-sm"
            }
          ],
          "childs": []
        },
        "btn-font-size-sm": {
          "name": "btn-font-size-sm",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-font-size-sm"
            }
          ],
          "childs": []
        },
        "btn-padding-y-tn": {
          "name": "btn-padding-y-tn",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-y-tn"
            }
          ],
          "childs": []
        },
        "btn-padding-x-tn": {
          "name": "btn-padding-x-tn",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-padding-x-tn"
            }
          ],
          "childs": []
        },
        "btn-font-size-tn": {
          "name": "btn-font-size-tn",
          "value": "0.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-font-size-tn"
            }
          ],
          "childs": []
        },
        "btn-border-radius": {
          "name": "btn-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "btn-rectangle-border-radius": {
          "name": "btn-rectangle-border-radius",
          "value": "0.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-rectangle-border-radius"
            }
          ],
          "childs": []
        },
        "btn-semi-round-border-radius": {
          "name": "btn-semi-round-border-radius",
          "value": "0.75rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-semi-round-border-radius"
            }
          ],
          "childs": []
        },
        "btn-round-border-radius": {
          "name": "btn-round-border-radius",
          "value": "1.5rem",
          "parents": [
            {
              "theme": "default",
              "prop": "btn-round-border-radius"
            }
          ],
          "childs": []
        },
        "btn-hero-shadow": {
          "name": "btn-hero-shadow",
          "value": [
            0,
            "4px",
            "10px",
            0,
            "rgba(33, 7, 77, 0.5)"
          ],
          "parents": [],
          "childs": []
        },
        "btn-hero-text-shadow": {
          "name": "btn-hero-text-shadow",
          "value": [
            0,
            "1px",
            "3px",
            "rgba(0, 0, 0, 0.3)"
          ],
          "parents": [],
          "childs": []
        },
        "btn-hero-bevel-size": {
          "name": "btn-hero-bevel-size",
          "value": [
            0,
            "3px",
            0,
            0
          ],
          "parents": [],
          "childs": []
        },
        "btn-hero-glow-size": {
          "name": "btn-hero-glow-size",
          "value": [
            0,
            "2px",
            "8px",
            0
          ],
          "parents": [],
          "childs": []
        },
        "btn-outline-fg": {
          "name": "btn-outline-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "btn-outline-hover-fg": {
          "name": "btn-outline-hover-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "btn-group-bg": {
          "name": "btn-group-bg",
          "value": "#373273",
          "parents": [],
          "childs": []
        },
        "btn-group-fg": {
          "name": "btn-group-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "btn-group-separator": {
          "name": "btn-group-separator",
          "value": "#312c66",
          "parents": [],
          "childs": []
        },
        "form-control-text-primary-color": {
          "name": "form-control-text-primary-color",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "form-control-text-secondary-color": {
          "name": "form-control-text-secondary-color",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "form-control-font-family": {
          "name": "form-control-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "form-control-bg": {
          "name": "form-control-bg",
          "value": "#37317a",
          "parents": [],
          "childs": []
        },
        "form-control-focus-bg": {
          "name": "form-control-focus-bg",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "form-control-border-width": {
          "name": "form-control-border-width",
          "value": "2px",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-border-width"
            }
          ],
          "childs": []
        },
        "form-control-border-type": {
          "name": "form-control-border-type",
          "value": "solid",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-border-type"
            }
          ],
          "childs": []
        },
        "form-control-border-radius": {
          "name": "form-control-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "form-control-border-color": {
          "name": "form-control-border-color",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        },
        "form-control-selected-border-color": {
          "name": "form-control-selected-border-color",
          "value": "#7659ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-primary"
            }
          ],
          "childs": []
        },
        "form-control-info-border-color": {
          "name": "form-control-info-border-color",
          "value": "#0088ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-info"
            }
          ],
          "childs": []
        },
        "form-control-success-border-color": {
          "name": "form-control-success-border-color",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "form-control-danger-border-color": {
          "name": "form-control-danger-border-color",
          "value": "#ff386a",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-danger"
            }
          ],
          "childs": []
        },
        "form-control-warning-border-color": {
          "name": "form-control-warning-border-color",
          "value": "#ffa100",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-warning"
            },
            {
              "theme": "default",
              "prop": "color-warning"
            }
          ],
          "childs": []
        },
        "form-control-placeholder-color": {
          "name": "form-control-placeholder-color",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "form-control-placeholder-font-size": {
          "name": "form-control-placeholder-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-placeholder-font-size"
            }
          ],
          "childs": []
        },
        "form-control-font-size": {
          "name": "form-control-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-font-size"
            }
          ],
          "childs": []
        },
        "form-control-sm-font-size": {
          "name": "form-control-sm-font-size",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-sm"
            },
            {
              "theme": "default",
              "prop": "font-size-sm"
            }
          ],
          "childs": []
        },
        "form-control-sm-padding": {
          "name": "form-control-sm-padding",
          "value": [
            "0.375rem",
            "1.125rem"
          ],
          "parents": [],
          "childs": []
        },
        "form-control-lg-font-size": {
          "name": "form-control-lg-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "form-control-lg-padding": {
          "name": "form-control-lg-padding",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-lg-padding"
            }
          ],
          "childs": []
        },
        "form-control-label-font-weight": {
          "name": "form-control-label-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-label-font-weight"
            }
          ],
          "childs": []
        },
        "form-control-feedback-font-size": {
          "name": "form-control-feedback-font-size",
          "value": "0.875rem",
          "parents": [
            {
              "theme": "default",
              "prop": "form-control-feedback-font-size"
            }
          ],
          "childs": []
        },
        "form-control-feedback-font-weight": {
          "name": "form-control-feedback-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "checkbox-bg": {
          "name": "checkbox-bg",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "checkbox-bg"
            }
          ],
          "childs": []
        },
        "checkbox-size": {
          "name": "checkbox-size",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "default",
              "prop": "checkbox-size"
            }
          ],
          "childs": []
        },
        "checkbox-border-size": {
          "name": "checkbox-border-size",
          "value": "2px",
          "parents": [
            {
              "theme": "default",
              "prop": "checkbox-border-size"
            }
          ],
          "childs": []
        },
        "checkbox-border-color": {
          "name": "checkbox-border-color",
          "value": "#a1a1e5",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg"
            }
          ],
          "childs": []
        },
        "checkbox-selected-border-color": {
          "name": "checkbox-selected-border-color",
          "value": "#00d977",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-success"
            }
          ],
          "childs": []
        },
        "checkbox-fg": {
          "name": "checkbox-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "radio-fg": {
          "name": "radio-fg",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "modal-font-size": {
          "name": "modal-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "modal-line-height": {
          "name": "modal-line-height",
          "value": 1.25,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "line-height"
            },
            {
              "theme": "default",
              "prop": "line-height"
            }
          ],
          "childs": []
        },
        "modal-font-weight": {
          "name": "modal-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "modal-fg": {
          "name": "modal-fg",
          "value": "#d1d1ff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-text"
            }
          ],
          "childs": []
        },
        "modal-fg-heading": {
          "name": "modal-fg-heading",
          "value": "#ffffff",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-fg-heading"
            }
          ],
          "childs": []
        },
        "modal-bg": {
          "name": "modal-bg",
          "value": "#3d3780",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "color-bg"
            }
          ],
          "childs": []
        },
        "modal-border": {
          "name": "modal-border",
          "value": "rgba(0, 0, 0, 0)",
          "parents": [
            {
              "theme": "default",
              "prop": "modal-border"
            }
          ],
          "childs": []
        },
        "modal-border-radius": {
          "name": "modal-border-radius",
          "value": "0.5rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "radius"
            }
          ],
          "childs": []
        },
        "modal-padding": {
          "name": "modal-padding",
          "value": "1.25rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "padding"
            },
            {
              "theme": "default",
              "prop": "padding"
            }
          ],
          "childs": []
        },
        "modal-header-font-family": {
          "name": "modal-header-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-secondary"
            },
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "modal-header-font-weight": {
          "name": "modal-header-font-weight",
          "value": 500,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-bolder"
            },
            {
              "theme": "default",
              "prop": "font-weight-bolder"
            }
          ],
          "childs": []
        },
        "modal-header-font-size": {
          "name": "modal-header-font-size",
          "value": "1.125rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size-lg"
            },
            {
              "theme": "default",
              "prop": "font-size-lg"
            }
          ],
          "childs": []
        },
        "modal-body-font-family": {
          "name": "modal-body-font-family",
          "value": "\"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-main"
            },
            {
              "theme": "default",
              "prop": "font-main"
            }
          ],
          "childs": []
        },
        "modal-body-font-weight": {
          "name": "modal-body-font-weight",
          "value": 400,
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-weight-normal"
            },
            {
              "theme": "default",
              "prop": "font-weight-normal"
            }
          ],
          "childs": []
        },
        "modal-body-font-size": {
          "name": "modal-body-font-size",
          "value": "1rem",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "font-size"
            },
            {
              "theme": "default",
              "prop": "font-size"
            }
          ],
          "childs": []
        },
        "modal-separator": {
          "name": "modal-separator",
          "value": "#342e73",
          "parents": [
            {
              "theme": "cosmic",
              "prop": "separator"
            }
          ],
          "childs": []
        }
      },
      "name": "cosmic",
      "parent": "default"
    }
  }
}