({ euiTheme }: UseEuiTheme)
| 9 | import { UseEuiTheme } from '../../services'; |
| 10 | |
| 11 | export const euiCodeTextColors = ({ euiTheme }: UseEuiTheme) => { |
| 12 | return { |
| 13 | backgroundColor: euiTheme.components.codeBackground, |
| 14 | color: euiTheme.components.codeColor, |
| 15 | }; |
| 16 | }; |
| 17 | |
| 18 | /** |
| 19 | * These variables are computationally expensive - do not call them outside `useEuiMemoizedStyles` |
no outgoing calls
no test coverage detected
searching dependent graphs…