/** * Copyright 2025 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Supported language tag styling */ .language-support-tag { display: inline-block; font-family: Roboto-Regular, Roboto, Arial, sans-serif; font-size: 0.6em; font-weight: 400; line-height: 1em; color: white; border-radius: 0.2em; overflow: hidden; /* Ensures the border-radius is applied to the child elements */ } .lst-supported { background-color: #555555; padding: 4px 6px; display: inline-block; } .lst-python { background-color: #007ec6; padding: 4px 6px; display: inline-block; } .lst-java { background-color: #ED8B00; color: black; padding: 4px 6px; display: inline-block; } .lst-go { background-color: #00ADD8; color: black; padding: 4px 6px; display: inline-block; } .lst-typescript { background-color: #235A97; padding: 4px 6px; display: inline-block; } .lst-kotlin { background-color: #7F52FF; padding: 4px 6px; display: inline-block; } .lst-preview { background-color: #7c4dff; padding: 4px 6px; display: inline-block; }